Revision 1061
Added by aldus over 15 years ago
frontend.functions.php | ||
---|---|---|
320 | 320 |
global $starttime; |
321 | 321 |
$vars = array('[YEAR]', '[PROCESS_TIME]'); |
322 | 322 |
$processtime=array_sum(explode(" ",microtime()))-$starttime; |
323 |
$values = array(date($date_format),$processtime); |
|
323 |
$values = array(gmdate($date_format),$processtime);
|
|
324 | 324 |
echo str_replace($vars, $values, WEBSITE_FOOTER); |
325 | 325 |
} |
326 | 326 |
} |
Also available in: Unified diff
changes in frontend.functions.php, line 323: 'date' to 'gmdate' to avoid E_STRICT warnings. Also "wb-setup.php' inside the jscalendar folder.