View Single Post
  #1  
Old 7th April 2014, 03:55
naotem's Avatar
naotem naotem is offline
Member
 
Join Date: Feb 2009
Brazil
Posts: 11
Thumbs up TS WDW. Some adjustments...
If you use the logout template(in all template) (Menu ->Extra -> Logout) Error Appears:
"An error occurred while Attempting to log you out Click here to log out."
And never goes out, gets in a loop.
Click the image to open in full size.
Any solution?


Some adjustments ...
To open the site posted links (in the forum, comments, shoutbox ...) in a new window, and does not take the user tracker:
In include/globalfunctions.php
Find:
PHP Code:
 ' . $target . ' 
Change to
PHP Code:
 $target 
Appears three times.

For function "Insert numbered list" work
In include/globalfunctions.php
Find:
PHP Code:
$listtype 'decimal';
      break; 
Change to:
PHP Code:
$listtype 'decimal';
      
//break; 
Sorry my bad english...

Bump: In messages.php find:
PHP Code:
$shownewfolders .= '<p>' .  $lang->messages['newtitle24'] . '<br /><input type="text"  size="30" name="newfolder' $i '" value=""  maxlength="14"></p>';
        ++
$i;
      }

      
$shownewfolders .= '
            ' 
$lang->messages['newtitle25'] . '
        </FIELDSET> 
Change to
PHP Code:
$shownewfolders  .= '<p>' $lang->messages['newtitle24'] . '<br  /><input type="text" size="30" name="newfolder' $i '" value=""  maxlength="14"></p>';
        ++
$i;
      }

      
$shownewfolders .= '
            ' 
$lang->messages['newtitle26'] . '
        </FIELDSET> 
Reply With Quote
The Following User Says Thank You to naotem For This Useful Post:
jh0ng (10th February 2017)