to alter to time for posted news.
Open up mainfile.php and change the line:
Code:
$datetime = strftime(""._DATESTRING."", mktime($datetime[4],$datetime[5],$datetime[6],$datetime[2],$datetime[3],$datetime[1]));
in the function FormatTimeStamp to:
Code:
$datetime = gmstrftime(""._DATESTRING."", gmmktime($datetime[4],$datetime[5],$datetime[6],$datetime[2],$datetime[3],$datetime[1])+36000);
replace the +36000 with your time offset from gmt.
Hope this helps.
You may also what to find the line '_DATESTRING' in the lang-english.php and change to %Z to your timezone name.