Thread: FTS 1.1
View Single Post
  #3  
Old 9th July 2009, 14:29
Keiichi Keiichi is offline
Senior Member
 
Join Date: Feb 2008
Brazil
Posts: 25
Default bug fix Left Menu
bug fix Left Menu

administrator/options.php
of
PHP Code:
    $TWEAH['leftmenunl'] = $leftmenunl 
to
PHP Code:
    $TWEAK['leftmenunl'] = $leftmenunl 
functions.php
of
PHP Code:
if ($leftmenu == "yes" AND (!$CURUSER AND $leftmenunl != "yes")) {
javascript('ssm'); 
javascript('ssmitems');

to
PHP Code:
if ($leftmenu == "yes" .(!$CURUSER AND $leftmenunl != "yes")) {
javascript('ssm'); 
javascript('ssmitems');

Reply With Quote