diff --git a/inc/html.php b/inc/html.php
index 495c6d6467e5b9d1d60332cbdaa20870d22b381e..21f7fa26f70807e2fdae3fbb505e6b87481d8b1f 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 .= '/>';