added TITLE to link around img as submit-button

This commit is contained in:
Ralf Becker 2002-10-08 00:08:40 +00:00
parent 4b05104bd7
commit 3adb76644e

View File

@ -487,6 +487,7 @@
}
break;
case 'button':
list($app) = explode('.',$this->name);
if ($this->java_script() && $cell['onchange'])
{
$html .= $this->html->input_hidden($form_name,'',False) . "\n";
@ -496,10 +497,13 @@
else
{
list($img,$ro_img) = explode(',',$cell['size']);
if (!empty($img))
{
$options .= ' TITLE="'.$label.'"';
}
$html .= !$readonly ? $this->html->submit_button($form_name,$label,'',
strlen($label) <= 1 || $cell['no_lang'],$options,$img) :
$this->html->image(substr($this->name,0,strpos($this->name,'.')),$ro_img);
strlen($label) <= 1 || $cell['no_lang'],$options,$img,$app) :
$this->html->image($app,$ro_img);
}
$extra_label = False;
if (!$readonly)
@ -826,4 +830,4 @@ function set_element2(form,name,vname)
}
return $js;
}
};
};