View Single Post
  #5  
Old 10th February 2013, 20:16
Daz's Avatar
Daz Daz is offline
Senior Member
 
Join Date: Dec 2009
United Kingdom
Posts: 124
Default
Did you try the BBCode fix?

http://www.bvlist.com/template-share...codes-fix.html

Follow those instructions, but if you are using 5.6, you need to change this line:
PHP Code:
  if (!defined ('IN_SCRIPT_TSSEv53'))
  {
    exit (
'<font face=\'verdana\' size=\'2\' color=\'darkred\'><b>Error!</b> Direct initialization of this file is not allowed.</font>');
  } 
to this:
PHP Code:
  if (!defined ('IN_SCRIPT_TSSEv56'))
  {
    exit (
'<font face=\'verdana\' size=\'2\' color=\'darkred\'><b>Error!</b> Direct initialization of this file is not allowed.</font>');
  } 
Reply With Quote