Error in DisplayMainDivEnd in lib/classes/class.admintheme.inc.php (svn)
Posted: Tue Jul 04, 2006 5:09 pm
There seems to be a problem with lib/classes/class.admintheme.inc.php in the latest SVN. The footer renders with a \n at the beginning. This is due to single quotes being used in the following line:
echo '\n';
I changed the line to this instead:
echo '' . "\n";
Tony
echo '\n';
I changed the line to this instead:
echo '' . "\n";
Tony