diff options
author | andi <andi@splitbrain.org> | 2005-02-07 21:50:53 +0100 |
---|---|---|
committer | andi <andi@splitbrain.org> | 2005-02-07 21:50:53 +0100 |
commit | 43bbd8ee6503853ce76caefbbc57535e7b329d76 (patch) | |
tree | 57edacc15018aa7c3499881ed70dcb0cdd93cbfb /inc/html.php | |
parent | 57756ab5bd008e6c495e4b462951441b3b6cb6c3 (diff) | |
download | rpg-43bbd8ee6503853ce76caefbbc57535e7b329d76.tar.gz rpg-43bbd8ee6503853ce76caefbbc57535e7b329d76.tar.bz2 |
fixed accesskey clash (#122)
darcs-hash:20050207205053-9977f-bf3631095d0aa09b65244648d9bb4990c9f4005c.gz
Diffstat (limited to 'inc/html.php')
-rw-r--r-- | inc/html.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/inc/html.php b/inc/html.php index 920d98ddf..77775ae5f 100644 --- a/inc/html.php +++ b/inc/html.php @@ -319,14 +319,14 @@ function html_header(){ <div class="bar" id="bar_top"> <div class="bar-left" id="bar_topleft"> <?=html_editbutton()?> - <?=html_btn(revs,$ID,'r',array('do' => 'revisions'))?> + <?=html_btn(revs,$ID,'o',array('do' => 'revisions'))?> </div> <div class="bar-right" id="bar_topright"> <?=html_btn(recent,'','r',array('do' => 'recent'))?> <form action="<?=wl()?>" accept-charset="<?=$lang['encoding']?>"> <input type="hidden" name="do" value="search" /> - <input type="text" name="id" class="edit" /> + <input type="text" accesskey="f" name="id" class="edit" /> <input type="submit" value="<?=$lang['btn_search']?>" class="button" /> </form> </div> @@ -418,7 +418,7 @@ function html_footer(){ <div class="bar" id="bar_bottom"> <div class="bar-left" id="bar_bottomleft"> <?=html_editbutton()?> - <?=html_btn(revs,$ID,'r',array('do' => 'revisions'))?> + <?=html_btn(revs,$ID,'o',array('do' => 'revisions'))?> </div> <div class="bar-right" id="bar_bottomright"> @@ -1153,4 +1153,4 @@ function html_debug(){ print '</body></html>'; } -?>
\ No newline at end of file +?> |