summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--includes/xmlrpc.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/includes/xmlrpc.inc b/includes/xmlrpc.inc
index 38704bc4a..19ccd445a 100644
--- a/includes/xmlrpc.inc
+++ b/includes/xmlrpc.inc
@@ -387,17 +387,17 @@ function xmlrpc_date($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');
+ $xmlrpc_date->iso8601 = date('Ymd\TH:i:s', $time);
}
else {
+ $xmlrpc_date->iso8601 = $time;
$time = str_replace(array('-', ':'), '', $time);
$xmlrpc_date->year = substr($time, 0, 4);
$xmlrpc_date->month = substr($time, 4, 2);
$xmlrpc_date->day = substr($time, 6, 2);
$xmlrpc_date->hour = substr($time, 9, 2);
$xmlrpc_date->minute = substr($time, 11, 2);
- $xmlrpc_date->second = substr($time, 14, 2);
- $xmlrpc_date->iso8601 = $time;
+ $xmlrpc_date->second = substr($time, 13, 2);
}
return $xmlrpc_date;
}