diff options
author | Anika Henke <anika@selfthinker.org> | 2009-01-19 18:02:35 +0100 |
---|---|---|
committer | Anika Henke <anika@selfthinker.org> | 2009-01-19 18:02:35 +0100 |
commit | 87cb01b7aebc5228a348e326e040da54abb3cc23 (patch) | |
tree | a4c590da04cc6316423d4b40ef8656079f59959d | |
parent | 3994772a3d7c09e3152591d2e20e85b389acc4ac (diff) | |
download | rpg-87cb01b7aebc5228a348e326e040da54abb3cc23.tar.gz rpg-87cb01b7aebc5228a348e326e040da54abb3cc23.tar.bz2 |
fix for input accesskeys
darcs-hash:20090119170235-f7d6d-4c0c66781e23148f1ed583dc304979ec2d5471b2.gz
-rw-r--r-- | inc/html.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/html.php b/inc/html.php index 495c6d646..21f7fa26f 100644 --- a/inc/html.php +++ b/inc/html.php @@ -184,7 +184,7 @@ function html_btn($name,$id,$akey,$params,$method='get',$tooltip=''){ $ret .= '<input type="submit" value="'.htmlspecialchars($label).'" class="button" '; if($akey){ $tip .= ' ['.strtoupper($akey).']'; - $ret .= 'accesskey="'.htmlspecialchars($label).' '.$akey.'" '; + $ret .= 'accesskey="'.$akey.'" '; } $ret .= 'title="'.$tip.'" '; $ret .= '/>'; |