Here's the code Xenon gave me to make it close. It was setting at the server time before (which is 6 hours behind me).
Code:
$time_lastup = strtotime($weatherdata[lastup]);
$time_lastup-=($bbuserinfo['timezoneoffset']+$timeoffset)*3600;
$weather[updatedate] = vbdate($dateformat,$time_lastup);
$weather[updatetime] = vbdate($timeformat,$time_lastup);
Quote:
Originally posted by JJR512
Boofo, if your update time is always ahead of your current real time, try adjusting it backwards by an hour by following the suggestion in Post #95 above. Subtracting 3600 (number of seconds in one hour) makes it one hour earlier.
|