summaryrefslogtreecommitdiff
path: root/app/Template/action_creation
diff options
context:
space:
mode:
Diffstat (limited to 'app/Template/action_creation')
-rw-r--r--app/Template/action_creation/create.php4
-rw-r--r--app/Template/action_creation/event.php4
2 files changed, 6 insertions, 2 deletions
diff --git a/app/Template/action_creation/create.php b/app/Template/action_creation/create.php
index 04aa761c..862ee474 100644
--- a/app/Template/action_creation/create.php
+++ b/app/Template/action_creation/create.php
@@ -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>
diff --git a/app/Template/action_creation/event.php b/app/Template/action_creation/event.php
index 58996ad8..e4166548 100644
--- a/app/Template/action_creation/event.php
+++ b/app/Template/action_creation/event.php
@@ -18,5 +18,7 @@
<?= t('When the selected event occurs execute the corresponding action.') ?>
</div>
- <?= $this->modal->submitButtons(t('Next step')) ?>
+ <?= $this->modal->submitButtons(array(
+ 'submitLabel' => t('Next step')
+ )) ?>
</form>