3
I encountered the problem to, moved to a new host, with PHP 5
http://xoopsforge.com/modules/newbb/viewtopic.php?post_id=1553#forumpost1553this post gave me the solution.
$Xoops_root/language/english/global.php
( or your language "mine is dutch" )
find
the e and the o have become reserved chars in PHP, so they need a \ to \e and \o .
define("_TODAY", "\V\a\\n\d\a\a\g G:i:s");
define("_YESTERDAY", "\G\i\s\\t\e\\r\e\\n G:i:s");
define("_MONTHDAY", "j/n/Y G:i:s");
define("_YEARMONTHDAY", "j/n/Y G:i");
So If you see T2006day in your date time of posts ( or T2007day
happy new year ) make shure the o gets a \ infront of it.
( added this so others searching might find sollution sooner )