Nav Bar Template modification
instructions say look for
PHP Code:
<td class="vbmenu_control"><a href="memberlist.php?$session[sessionurl]">$vbphrase[members_list]</a></td>
in the nav bar code its actually (for me at least)
PHP Code:
<td class="vbmenu_control"><a href="memberlist.php$session[sessionurl_q]">$vbphrase[members_list]</a></td>
NOTICE THE
all the code around the line thats to be searched for all have the sessionurl_q ibuilt in. soo the code thats getting added on
PHP Code:
<td class="vbmenu_control"><a href="timeslips.php?$session[sessionurl]">$vbphrase[timeslips]</a></td>
is the _q suppose to be added on to so i can look like
PHP Code:
<td class="vbmenu_control"><a href="timeslips.php?$session[sessionurl_q]">$vbphrase[timeslips]</a></td>