"fixed broken image title"

This commit is contained in:
Ralf Becker 2008-03-20 08:32:29 +00:00
parent cad7d0d570
commit 2912ec7c61

View File

@ -650,7 +650,7 @@ class html
return self::input($name,$label,$image != '' ? 'image' : $buttontype,$options.$image); return self::input($name,$label,$image != '' ? 'image' : $buttontype,$options.$image);
} }
return '<button type="'.$buttontype.'" name="'.$name.'" value="'.$label.'" '.$options.' />'. return '<button type="'.$buttontype.'" name="'.$name.'" value="'.$label.'" '.$options.' />'.
($image != '' ? /*self::image($app,$image,$label,$options)*/"<img$image self::$prefered_img_title=\"$label\"> " : ''). ($image != '' ? /*self::image($app,$image,$label,$options)*/'<img'.$image.' '.self::$prefered_img_title.'="'.$label.'"> ' : '').
($image == '' || $accesskey ? $label_u : '').'</button>'; ($image == '' || $accesskey ? $label_u : '').'</button>';
} }
@ -911,7 +911,7 @@ class html
} }
if ($title) if ($title)
{ {
$options .= " self::$prefered_img_title=\"".self::htmlspecialchars($title).'"'; $options .= ' '.self::$prefered_img_title.'="'.self::htmlspecialchars($title).'"';
} }
// This block makes pngfix.js useless, adding a check on disable_pngfix to have pngfix.js do its thing // This block makes pngfix.js useless, adding a check on disable_pngfix to have pngfix.js do its thing