Quote:
Originally Posted by Slave
That seems to have worked .. thanks
Although I have noticed another problem .. whenever I click on a link that is using the "Short (Title + Thumb)" linkbit which then goes to the "Modern" linkbit it comes up with the following error ..
Code:
Fatal error: Call to undefined function: vbphrase() in /home/virtual/site101/fst/var/www/html/local_links.php on line 526
This is an override of the normal linkbit as it's the bit that I'm using as a contact directory.
|
Sorry about that. Edit local_links.php, go to line 526 and put a dollar sign in front of vbphrase and change the parentheses
Code:
$hit = record_hit($vbulletin->GPC['linkid'], construct_phrase(vbphrase('ll_null_link', $viewlinkname)), $LINK_OK);
should be
Code:
$hit = record_hit($vbulletin->GPC['linkid'], construct_phrase($vbphrase['ll_null_link'], $viewlinkname), $LINK_OK);
If only I had such Slaves in the office