summaryrefslogtreecommitdiff
path: root/lib/plugins/revert/admin.php
diff options
context:
space:
mode:
authorBen Coburn <btcoburn@silicodon.net>2006-12-07 08:49:06 +0100
committerBen Coburn <btcoburn@silicodon.net>2006-12-07 08:49:06 +0100
commitebf1501f6d253ef906c44bae278a2f80ffcb9f54 (patch)
tree433bac6de834b9584a965e87d39793fee0a846ac /lib/plugins/revert/admin.php
parent5aa52fafe8be8e728c0d2c9ff12c999e80766127 (diff)
downloadrpg-ebf1501f6d253ef906c44bae278a2f80ffcb9f54.tar.gz
rpg-ebf1501f6d253ef906c44bae278a2f80ffcb9f54.tar.bz2
changelog type strings replaced with constants
Using more verbose constant names in the place of single character strings should make the code much more readable. This does not change the behavior of the changelog. darcs-hash:20061207074906-05dcb-0bdc35e7241bf14063b2b43a6ff26d8a3c307cb9.gz
Diffstat (limited to 'lib/plugins/revert/admin.php')
-rw-r--r--lib/plugins/revert/admin.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/plugins/revert/admin.php b/lib/plugins/revert/admin.php
index b9c196297..5c5d98ab6 100644
--- a/lib/plugins/revert/admin.php
+++ b/lib/plugins/revert/admin.php
@@ -132,7 +132,7 @@ class admin_plugin_revert extends DokuWiki_Admin_Plugin {
$cnt++;
$date = date($conf['dformat'],$recent['date']);
- echo ($recent['type']==='e') ? '<li class="minor">' : '<li>';
+ echo ($recent['type']===DOKU_CHANGE_TYPE_MINOR_EDIT) ? '<li class="minor">' : '<li>';
echo '<div class="li">';
echo '<input type="checkbox" name="revert[]" value="'.hsc($recent['id']).'" checked="checked" id="revert__'.$cnt.'" />';
echo '<label for="revert__'.$cnt.'">'.$date.'</label> ';