diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2014-07-15 22:49:18 +0200 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2014-07-15 22:58:57 +0200 |
commit | 3610f3c6a4e37f79139ffb38eebf0d00cd6add6d (patch) | |
tree | cf0ad514743f5d9e75df439a0294f2cd7317c593 /web/template/account_edit_form.php | |
parent | 1b901616dc355cbab286ece18ca2c9c9e19d3415 (diff) | |
download | aurweb-3610f3c6a4e37f79139ffb38eebf0d00cd6add6d.tar.xz |
Add a new user group "Trusted User & Developer"
This group has full permissions on everything.
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/template/account_edit_form.php')
-rw-r--r-- | web/template/account_edit_form.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/web/template/account_edit_form.php b/web/template/account_edit_form.php index 9a99e78..f5890fc 100644 --- a/web/template/account_edit_form.php +++ b/web/template/account_edit_form.php @@ -37,6 +37,10 @@ <?php $T == 3 ? print " selected=\"selected\">" : print ">"; print __("Developer")."\n"; ?> </option> + <option value="4" + <?php $T == 4 ? print " selected=\"selected\">" : print ">"; + print __("Trusted User & Developer")."\n"; ?> + </option> <?php endif; ?> </select> |