Installing and using phpBB MODs with the bridge.
Forum rules
This forum is not for any support questions/issues/features. Please use
Support Center for such requests.
Admin
Site Admin
Posts: 1082 Joined: October 21st, 2008, 5:39 pm
Name: Administrator
Browser: Chrome
Post
by Admin » March 11th, 2013, 2:03 pm
1. Open
/viewtopic.php , replace around line 1409
Code: Select all
// Second parse bbcode here
if ($row['bbcode_bitfield'])
{
$bbcode->bbcode_second_pass($message, $row['bbcode_uid'], $row['bbcode_bitfield']);
}
with
Code: Select all
// Second parse bbcode here
if ($row['bbcode_bitfield'])
{
$GLOBALS['row'] = $row;
$bbcode->bbcode_second_pass($message, $row['bbcode_uid'], $row['bbcode_bitfield']);
}
2. Open
/includes/bbcode.php , replace all
with
Code: Select all
$urllink = $phpbb_root_path . 'viewtopic.php
3. Purge phpBB cache.
bendeb
Posts: 2 Joined: February 25th, 2013, 5:17 pm
Name: Benjamin
Post
by bendeb » March 11th, 2013, 3:24 pm
Thank you very much for your support.
Dicemod works great now !
Many thanks !