diff options
author | Dominik Eckelmann <deckelmann@gmail.com> | 2010-05-27 09:31:22 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2010-06-09 21:19:06 +0200 |
commit | ccee78424602b02309b2c81b3fa932bbcce1a03b (patch) | |
tree | a12c503ec066b3f1febb1041d092e7e8da230335 | |
parent | eb2cef78be976d583e9089dfc7de0d93d8476f3d (diff) | |
download | rpg-ccee78424602b02309b2c81b3fa932bbcce1a03b.tar.gz rpg-ccee78424602b02309b2c81b3fa932bbcce1a03b.tar.bz2 |
Changed date format to the xmlrpc spec date format
-rw-r--r-- | inc/IXR_Library.php | 2 |
1 files changed, 1 insertions, 1 deletions
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 '<dateTime.iso8601>'.$this->getIso().'</dateTime.iso8601>'; |