AlterBrains • Installing Dicemod
Page 1 of 1

Installing Dicemod

Posted: March 11th, 2013, 3:03 pm
by Admin
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

Code: Select all

$urllink = 'viewtopic.php
with

Code: Select all

$urllink = $phpbb_root_path . 'viewtopic.php
3. Purge phpBB cache.

Re: Installing Dicemod

Posted: March 11th, 2013, 4:24 pm
by bendeb
Thank you very much for your support.
Dicemod works great now ! :)
Many thanks !