diff options
Diffstat (limited to 'www')
-rw-r--r-- | www/api/export_sioc.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/api/export_sioc.php b/www/api/export_sioc.php index 8bdfd70..47ffc96 100644 --- a/www/api/export_sioc.php +++ b/www/api/export_sioc.php @@ -67,9 +67,9 @@ $bookmarks =& $bookmarkservice->getBookmarks(0, NULL, NULL, NULL); <?php foreach($bookmarks['bookmarks'] as $bookmark): ?> <bm:Bookmark rdf:about="<?php echo createUrl('history', $bookmark['bHash']) ?>"> <dc:title><?php echo filter($bookmark['bTitle']) ?></dc:title> - <dc:created><?php echo filter($bookmark['bCreated']) ?></dc:created> + <dc:created><?php echo filter($bookmark['bDatetime']) ?></dc:created> <dc:description><?php echo filter(strip_tags($bookmark['bDescription'])) ?></dc:description> - <dc:date><?php echo $bookmark['bDateTime'] ?></dc:date> + <dc:date><?php echo $bookmark['bModified'] ?></dc:date> <bm:recalls rdf:resource="<?php echo filter($bookmark['bAddress']) ?>"/> <sioc:owner_of rdf:resource="<?php echo createUrl('profile', $usersArray[$bookmark['uId']]) ?>"/> <?php foreach($bookmark['tags'] as $tag): ?> |