summaryrefslogtreecommitdiff
path: root/lib/plugins/revert
diff options
context:
space:
mode:
authorAnika Henke <anika@selfthinker.org>2015-07-12 19:05:43 +0100
committerAnika Henke <anika@selfthinker.org>2015-07-12 19:05:43 +0100
commitae614416a5d7f5cab6c5b82a0c45f587d7fa9c01 (patch)
treeccf67b3af75257730c1b38d01d91a3d36b92376e /lib/plugins/revert
parent619a02f57dbe49efa287f054aee381edaf3e0397 (diff)
downloadrpg-ae614416a5d7f5cab6c5b82a0c45f587d7fa9c01.tar.gz
rpg-ae614416a5d7f5cab6c5b82a0c45f587d7fa9c01.tar.bz2
changed all input type=submit buttons to button type=submit button for better stylability
Diffstat (limited to 'lib/plugins/revert')
-rw-r--r--lib/plugins/revert/admin.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/plugins/revert/admin.php b/lib/plugins/revert/admin.php
index b61615d00..1a0300585 100644
--- a/lib/plugins/revert/admin.php
+++ b/lib/plugins/revert/admin.php
@@ -64,9 +64,9 @@ class admin_plugin_revert extends DokuWiki_Admin_Plugin {
global $lang, $INPUT;
echo '<form action="" method="post"><div class="no">';
echo '<label>'.$this->getLang('filter').': </label>';
- echo '<input type="text" name="filter" class="edit" value="'.hsc($INPUT->str('filter')).'" />';
- echo ' <input type="submit" class="button" value="'.$lang['btn_search'].'" />';
- echo ' <span>'.$this->getLang('note1').'</span>';
+ echo '<input type="text" name="filter" class="edit" value="'.hsc($INPUT->str('filter')).'" /> ';
+ echo '<button type="submit">'.$lang['btn_search'].'</button> ';
+ echo '<span>'.$this->getLang('note1').'</span>';
echo '</div></form><br /><br />';
}
@@ -173,7 +173,7 @@ class admin_plugin_revert extends DokuWiki_Admin_Plugin {
echo '</ul>';
echo '<p>';
- echo '<input type="submit" class="button" value="'.$this->getLang('revert').'" /> ';
+ echo '<button type="submit">'.$this->getLang('revert').'</button> ';
printf($this->getLang('note2'),hsc($filter));
echo '</p>';