summaryrefslogtreecommitdiffstats
path: root/web/lib/acctfuncs.inc.php
diff options
context:
space:
mode:
authorLukas Fleischer <archlinux@cryptocrack.de>2014-07-15 22:49:18 +0200
committerLukas Fleischer <archlinux@cryptocrack.de>2014-07-15 22:58:57 +0200
commit3610f3c6a4e37f79139ffb38eebf0d00cd6add6d (patch)
treecf0ad514743f5d9e75df439a0294f2cd7317c593 /web/lib/acctfuncs.inc.php
parent1b901616dc355cbab286ece18ca2c9c9e19d3415 (diff)
downloadaurweb-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/lib/acctfuncs.inc.php')
-rw-r--r--web/lib/acctfuncs.inc.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/web/lib/acctfuncs.inc.php b/web/lib/acctfuncs.inc.php
index 578c376..73d01a5 100644
--- a/web/lib/acctfuncs.inc.php
+++ b/web/lib/acctfuncs.inc.php
@@ -338,6 +338,9 @@ function search_results_page($O=0,$SB="",$U="",$T="",
} elseif ($T == "d") {
$q.= "AND AccountTypes.ID = 3 ";
$search_vars[] = "T";
+ } elseif ($T == "td") {
+ $q.= "AND AccountTypes.ID = 4 ";
+ $search_vars[] = "T";
}
if ($S) {
$q.= "AND Users.Suspended = 1 ";
@@ -1080,7 +1083,8 @@ function cast_proposal_vote($voteid, $uid, $vote, $newtotal) {
* @return bool True if permission to edit the account, otherwise false
*/
function can_edit_account($acctinfo) {
- if ($acctinfo['AccountType'] == 'Developer') {
+ if ($acctinfo['AccountType'] == 'Developer' ||
+ $acctinfo['AccountType'] == 'Trusted User & Developer') {
return has_credential(CRED_ACCOUNT_EDIT_DEV);
}