diff options
author | Frederic Guillot <fred@kanboard.net> | 2017-01-11 22:43:24 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2017-01-11 22:43:24 -0500 |
commit | 0807f2798157124e4ee2226d2749432e0748bc78 (patch) | |
tree | dd2c879a4fe95ba8e9dc42d5a08bc9013fd8ece3 /app/Template/action_creation/event.php | |
parent | 85fb4dd1ca54be22fbe393c27175b6fc78b7758b (diff) |
Fix wrong arguments for submitButtons() helper
Diffstat (limited to 'app/Template/action_creation/event.php')
-rw-r--r-- | app/Template/action_creation/event.php | 4 |
1 files changed, 3 insertions, 1 deletions
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> |