diff options
-rw-r--r-- | inc/html.php | 6 |
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')); } |