Fix wrong arguments for submitButtons() helper

This commit is contained in:
Frederic Guillot
2017-01-11 22:43:24 -05:00
parent 85fb4dd1ca
commit 0807f27981
4 changed files with 11 additions and 4 deletions

View File

@@ -8,5 +8,7 @@
<?= $this->form->label(t('Action'), 'action_name') ?>
<?= $this->form->select('action_name', $available_actions, $values) ?>
<?= $this->modal->submitButtons(t('Next step')) ?>
<?= $this->modal->submitButtons(array(
'submitLabel' => t('Next step')
)) ?>
</form>