summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Klier <chi@chimeric.de>2008-10-16 11:35:08 +0200
committerMichael Klier <chi@chimeric.de>2008-10-16 11:35:08 +0200
commit18d107cb62af5b4198c40bfdb5e8c54c2be6e071 (patch)
tree26c4d3d6ad247b1994113be6bab9f7a190c4011f
parent85873df939040d533a93df1228fb29106e39d675 (diff)
downloadrpg-18d107cb62af5b4198c40bfdb5e8c54c2be6e071.tar.gz
rpg-18d107cb62af5b4198c40bfdb5e8c54c2be6e071.tar.bz2
added missing CSS class to recent changes buttons
darcs-hash:20081016093508-23886-ff0123235448294adbad67bbd7a93d598ca96755.gz
-rw-r--r--inc/html.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/inc/html.php b/inc/html.php
index 80cefd9b1..b2d001dc2 100644
--- a/inc/html.php
+++ b/inc/html.php
@@ -655,7 +655,8 @@ function html_recent($first=0){
'name' => 'first['.$first.']',
'value' => $lang['btn_newer'],
'accesskey' => 'n',
- 'title' => '[ALT+N]'
+ 'title' => '[ALT+N]',
+ 'class' => 'button'
)));
$form->addElement(form_makeCloseTag('div'));
}
@@ -666,7 +667,8 @@ function html_recent($first=0){
'name' => 'first['.$last.']',
'value' => $lang['btn_older'],
'accesskey' => 'p',
- 'title' => '[ALT+P]'
+ 'title' => '[ALT+P]',
+ 'class' => 'button'
)));
$form->addElement(form_makeCloseTag('div'));
}