mirror of https://github.com/BOINC/boinc.git
Changed date string to print UTC time.
svn path=/trunk/boinc/; revision=2190
This commit is contained in:
parent
6214011910
commit
dbb53daf26
|
@ -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() {
|
||||||
|
|
Loading…
Reference in New Issue