Fix addElements call in CheckNowCommandForm

This commit is contained in:
Johannes Meyer 2014-11-14 10:41:12 +01:00
parent 6ee0c218e9
commit ea56e4f108

View File

@ -32,6 +32,7 @@ class CheckNowCommandForm extends ObjectsCommandForm
$iconUrl = $this->getView()->href('img/icons/refresh_petrol.png'); $iconUrl = $this->getView()->href('img/icons/refresh_petrol.png');
$this->addElements(array( $this->addElements(array(
array(
'button', 'button',
'btn_submit', 'btn_submit',
array( array(
@ -43,7 +44,9 @@ class CheckNowCommandForm extends ObjectsCommandForm
'escape' => false, 'escape' => false,
'class' => 'link-like' 'class' => 'link-like'
) )
)
)); ));
return $this; return $this;
} }