diff options
author | Michael Klier <chi@chimeric.de> | 2008-01-25 18:35:29 +0100 |
---|---|---|
committer | Michael Klier <chi@chimeric.de> | 2008-01-25 18:35:29 +0100 |
commit | 610b2ab14bd8fbf55824c79073fac0d3805d647e (patch) | |
tree | 7ed6d3e085187af9737bfe6b70b499eb822e6174 | |
parent | 222572bfc222713bad7b94586d679cc052f5342b (diff) | |
download | rpg-610b2ab14bd8fbf55824c79073fac0d3805d647e.tar.gz rpg-610b2ab14bd8fbf55824c79073fac0d3805d647e.tar.bz2 |
XMLRPC: use correct date format in getRecentChanges()
darcs-hash:20080125173529-23886-7f5470cb513b667a8c2acb526edb3df8812070d4.gz
-rw-r--r-- | lib/exe/xmlrpc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/exe/xmlrpc.php b/lib/exe/xmlrpc.php index 926bdb9ac..b0ec1df02 100644 --- a/lib/exe/xmlrpc.php +++ b/lib/exe/xmlrpc.php @@ -318,7 +318,7 @@ class dokuwiki_xmlrpc_server extends IXR_IntrospectionServer { // check if logline is still in the queried time frame if($logline['date'] >= $timestamp) { $change['name'] = $logline['id']; - $change['lastModified'] = $logline['date']; + $change['lastModified'] = new IXR_Date($logline['date']); $change['author'] = $logline['user']; $change['version'] = $logline['date']; array_push($changes, $change); |