Quote:
Originally Posted by Merriweather
Another minor bug - when you are posting, the breadcrumb at the top for the topic link doesn't work. It's missing the group number in the URL.
|
I just noticed sabert00the has fixed it for 2.0.11, but in the meantime, here's the fix for that:
Find this line (line 250) in groups/newreply.php:
Code:
$navbits['viewthread.php?' . $vbulletin->session->vars['sessionurl'] . 't=' . $threadinfo['threadid']] = $threadinfo['title'];
and replace it with
Code:
$navbits['viewthread.php?' . $vbulletin->session->vars['sessionurl'] . 't=' . $threadinfo['threadid'] . '&g=' . $foruminfo['groupid']] = $threadinfo['title'];
You are essentially pasting
Code:
. '&g=' . $foruminfo['groupid']
right after
Code:
$threadinfo['threadid']
on line 250 of groups/newreply.php
Nice catch, btw! :up: