summaryrefslogtreecommitdiff
path: root/inc/IXR_Library.php
diff options
context:
space:
mode:
authorDominik Eckelmann <deckelmann@gmail.com>2010-05-27 09:31:22 +0200
committerAndreas Gohr <andi@splitbrain.org>2010-06-09 21:19:06 +0200
commitccee78424602b02309b2c81b3fa932bbcce1a03b (patch)
treea12c503ec066b3f1febb1041d092e7e8da230335 /inc/IXR_Library.php
parenteb2cef78be976d583e9089dfc7de0d93d8476f3d (diff)
downloadrpg-ccee78424602b02309b2c81b3fa932bbcce1a03b.tar.gz
rpg-ccee78424602b02309b2c81b3fa932bbcce1a03b.tar.bz2
Changed date format to the xmlrpc spec date format
Diffstat (limited to 'inc/IXR_Library.php')
-rw-r--r--inc/IXR_Library.php2
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>';