diff options
author | Frederic Guillot <fred@kanboard.net> | 2017-01-22 18:45:17 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2017-01-22 18:45:17 -0500 |
commit | b55810043d2cc061a2a873f4e053e9933cf07ec8 (patch) | |
tree | 80f3ff36b4eacc30e89eabd5341c8b40712ae741 /app/Template/user_list | |
parent | 9b9543353f2a19643b61880c2d46b0c52b104d8a (diff) |
Simplify user creation form
Diffstat (limited to 'app/Template/user_list')
-rw-r--r-- | app/Template/user_list/show.php | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/app/Template/user_list/show.php b/app/Template/user_list/show.php index 783a1df7..667945ca 100644 --- a/app/Template/user_list/show.php +++ b/app/Template/user_list/show.php @@ -3,10 +3,7 @@ <?php if ($this->user->hasAccess('UserCreationController', 'show')): ?> <ul> <li> - <?= $this->modal->medium('plus', t('New local user'), 'UserCreationController', 'show') ?> - </li> - <li> - <?= $this->modal->medium('plus', t('New remote user'), 'UserCreationController', 'show', array('remote' => 1)) ?> + <?= $this->modal->medium('plus', t('New user'), 'UserCreationController', 'show') ?> </li> <li> <?= $this->modal->medium('upload', t('Import'), 'UserImportController', 'show') ?> |