Page 1 of 1

Error in DisplayMainDivEnd in lib/classes/class.admintheme.inc.php (svn)

Posted: Tue Jul 04, 2006 5:09 pm
by tonysgi
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

Re: Error in DisplayMainDivEnd in lib/classes/class.admintheme.inc.php (svn)

Posted: Mon Jul 10, 2006 3:05 am
by Elijah Lofgren
tonysgi wrote: 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
Thanks for reporting this. I was the one that caused that and I eventually noticed it and fixed it also.  ;)

Cheers,

Elijah