From 9b914de2388028385d8637ee1e607d93ad22212e Mon Sep 17 00:00:00 2001 From: Bruce Allen Date: Fri, 31 Dec 2004 00:58:15 +0000 Subject: [PATCH] Fixed comment svn path=/trunk/boinc/; revision=4970 --- html/inc/util.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/inc/util.inc b/html/inc/util.inc index a4543789be..7e92a353cf 100644 --- a/html/inc/util.inc +++ b/html/inc/util.inc @@ -204,7 +204,7 @@ function pretty_time_str($x) { // @return String A user readable DateTime-String in UTC // @param Integer $x The mysql-Timestamp to convert function mysqltime_str($x) { - // Syntax of supplied mysql-timestamp is YYYYMMDDHHMMSS + // Syntax of supplied mysql-timestamp is YYYY-MM-DD HH:MM:SS $year = substr($x,0,4); $month = substr($x,5,2); $day = substr($x,8,2);