diff options
Diffstat (limited to 'inc')
-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 .= '/>'; |