Update. Added separate $title param for input submit
This commit is contained in:
parent
5a81b6d04e
commit
91475ca33f
|
@ -137,7 +137,7 @@ class FavorForm extends Form
|
|||
function formActions()
|
||||
{
|
||||
$this->out->submit('favor-submit-' . $this->notice->id,
|
||||
_('Favor this notice'));
|
||||
_('Favor'), 'submit', null, _('Favor this notice'));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -313,14 +313,14 @@ class HTMLOutputter extends XMLOutputter
|
|||
* @todo add a $name parameter
|
||||
*/
|
||||
|
||||
function submit($id, $label, $cls='submit', $name=null)
|
||||
function submit($id, $label, $cls='submit', $name=null, $title=null)
|
||||
{
|
||||
$this->element('input', array('type' => 'submit',
|
||||
'id' => $id,
|
||||
'name' => ($name) ? $name : $id,
|
||||
'class' => $cls,
|
||||
'value' => $label,
|
||||
'title' => $label));
|
||||
'title' => $title));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue
Block a user