diff options
author | Matthias Schulte <post@lupo49.de> | 2013-08-03 00:08:52 +0200 |
---|---|---|
committer | Matthias Schulte <post@lupo49.de> | 2013-08-03 00:08:52 +0200 |
commit | dc235f9689a496b476b4f3c98deb3ad746284668 (patch) | |
tree | 20471144752bd39993b107ab488b5cb56fed0eb1 /lib/plugins/revert/admin.php | |
parent | 8c824552a6a23a7a54eda69d449a233561cde32a (diff) | |
download | dokuwiki-dc235f9689a496b476b4f3c98deb3ad746284668.tar.gz dokuwiki-dc235f9689a496b476b4f3c98deb3ad746284668.zip |
Re-enable displaying the date in the revert manager (Fixes FS#2073)
Diffstat (limited to 'lib/plugins/revert/admin.php')
-rw-r--r-- | lib/plugins/revert/admin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/plugins/revert/admin.php b/lib/plugins/revert/admin.php index ccad6e9de..beff10ced 100644 --- a/lib/plugins/revert/admin.php +++ b/lib/plugins/revert/admin.php @@ -128,7 +128,7 @@ class admin_plugin_revert extends DokuWiki_Admin_Plugin { } $cnt++; - $date = strftime($conf['dformat'],$recent['date']); + $date = dformat($recent['date']); echo ($recent['type']===DOKU_CHANGE_TYPE_MINOR_EDIT) ? '<li class="minor">' : '<li>'; echo '<div class="li">'; |