Installing Dicemod

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.
Post Reply
User avatar
Admin
Site Admin
Site Admin
Posts: 1064
Joined: October 21st, 2008, 6:39 pm
Name: Administrator
Browser: Chrome

Installing Dicemod

Post 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.
bendeb
Posts: 2
Joined: February 25th, 2013, 5:17 pm
Name: Benjamin

Re: Installing Dicemod

Post by bendeb »

Thank you very much for your support.
Dicemod works great now ! :)
Many thanks !
Post Reply