diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-10-03 12:09:27 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-10-03 12:09:27 -0400 |
commit | d67d7c54e65e80d1b484490e42dbecb969aa7686 (patch) | |
tree | e62446885fac0d3af5b29d409d8e9a4f6c50940e /app/Template/user/create_local.php | |
parent | b5a2b8f9f7ac9ef947357acd3981993159d64b52 (diff) |
Add web notifications
Diffstat (limited to 'app/Template/user/create_local.php')
-rw-r--r-- | app/Template/user/create_local.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Template/user/create_local.php b/app/Template/user/create_local.php index 3c8b43b0..98c38f0d 100644 --- a/app/Template/user/create_local.php +++ b/app/Template/user/create_local.php @@ -37,7 +37,7 @@ <?= $this->form->label(t('Language'), 'language') ?> <?= $this->form->select('language', $languages, $values, $errors) ?><br/> - <?= $this->form->checkbox('notifications_enabled', t('Enable notifications'), 1, isset($values['notifications_enabled']) && $values['notifications_enabled'] == 1 ? true : false) ?> + <?= $this->form->checkbox('notifications_enabled', t('Enable email notifications'), 1, isset($values['notifications_enabled']) && $values['notifications_enabled'] == 1 ? true : false) ?> <?= $this->form->checkbox('is_admin', t('Administrator'), 1, isset($values['is_admin']) && $values['is_admin'] == 1 ? true : false) ?> <?= $this->form->checkbox('is_project_admin', t('Project Administrator'), 1, isset($values['is_project_admin']) && $values['is_project_admin'] == 1 ? true : false) ?> </div> |