Allow <button type='submit'> for the benifit of IE<=7

This commit is contained in:
Simon Elvery 2012-12-19 17:21:49 +10:00 committed by Ingo Schommer
parent e53280c650
commit 775567d427

View File

@ -78,7 +78,6 @@ class FormAction extends FormField {
public function getAttributes() {
$type = (isset($this->attributes['src'])) ? 'image' : 'submit';
$type = ($this->useButtonTag) ? null : $type;
return array_merge(
parent::getAttributes(),