From ccee78424602b02309b2c81b3fa932bbcce1a03b Mon Sep 17 00:00:00 2001 From: Dominik Eckelmann Date: Thu, 27 May 2010 09:31:22 +0200 Subject: Changed date format to the xmlrpc spec date format --- inc/IXR_Library.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'inc') diff --git a/inc/IXR_Library.php b/inc/IXR_Library.php index 9c270b1ce..b82952d74 100644 --- a/inc/IXR_Library.php +++ b/inc/IXR_Library.php @@ -623,7 +623,7 @@ class IXR_Date { $this->second = substr($iso, 17, 2); } function getIso() { - return $this->year.'-'.$this->month.'-'.$this->day.'T'.$this->hour.':'.$this->minute.':'.$this->second; + return $this->year.$this->month.$this->day.'T'.$this->hour.':'.$this->minute.':'.$this->second; } function getXml() { return ''.$this->getIso().''; -- cgit v1.2.3