Changed date string to print UTC time.

svn path=/trunk/boinc/; revision=2190
This commit is contained in:
David Anderson 2003-08-23 01:21:18 +00:00
parent 6214011910
commit dbb53daf26
1 changed files with 1 additions and 1 deletions

View File

@ -172,7 +172,7 @@ function time_str($x) {
function pretty_time_str($x) { function pretty_time_str($x) {
if ($x == 0) return " "; if ($x == 0) return " ";
return date('D M j, Y g:i a', $x); return gmdate('D M j, Y g:i a', $x) . " UTC";
} }
function start_table() { function start_table() {