summaryrefslogtreecommitdiff
path: root/lib/exe
diff options
context:
space:
mode:
authorMichael Klier <chi@chimeric.de>2008-01-25 18:35:29 +0100
committerMichael Klier <chi@chimeric.de>2008-01-25 18:35:29 +0100
commit610b2ab14bd8fbf55824c79073fac0d3805d647e (patch)
tree7ed6d3e085187af9737bfe6b70b499eb822e6174 /lib/exe
parent222572bfc222713bad7b94586d679cc052f5342b (diff)
downloadrpg-610b2ab14bd8fbf55824c79073fac0d3805d647e.tar.gz
rpg-610b2ab14bd8fbf55824c79073fac0d3805d647e.tar.bz2
XMLRPC: use correct date format in getRecentChanges()
darcs-hash:20080125173529-23886-7f5470cb513b667a8c2acb526edb3df8812070d4.gz
Diffstat (limited to 'lib/exe')
-rw-r--r--lib/exe/xmlrpc.php2
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);