From 305d14412cb85673934800fef40f77443c348a01 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Wed, 15 Oct 2008 13:56:08 +0000 Subject: - Patch #321165 by Dave Reid: fixed exceptions in XML-RPC library and its tests. --- includes/xmlrpc.inc | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'includes') diff --git a/includes/xmlrpc.inc b/includes/xmlrpc.inc index 4895e9802..25e043da4 100644 --- a/includes/xmlrpc.inc +++ b/includes/xmlrpc.inc @@ -381,13 +381,13 @@ function xmlrpc_date($time) { $xmlrpc_date->is_date = TRUE; // $time can be a PHP timestamp or an ISO one if (is_numeric($time)) { - $xmlrpc_date->year = date('Y', $time); - $xmlrpc_date->month = date('m', $time); - $xmlrpc_date->day = date('d', $time); - $xmlrpc_date->hour = date('H', $time); - $xmlrpc_date->minute = date('i', $time); - $xmlrpc_date->second = date('s', $time); - $xmlrpc_date->iso8601 = date('Ymd\TH:i:s', $time); + $xmlrpc_date->year = gmdate('Y', $time); + $xmlrpc_date->month = gmdate('m', $time); + $xmlrpc_date->day = gmdate('d', $time); + $xmlrpc_date->hour = gmdate('H', $time); + $xmlrpc_date->minute = gmdate('i', $time); + $xmlrpc_date->second = gmdate('s', $time); + $xmlrpc_date->iso8601 = gmdate('Ymd\TH:i:s', $time); } else { $xmlrpc_date->iso8601 = $time; -- cgit v1.2.3