summaryrefslogtreecommitdiffstats
path: root/frontends/php
diff options
context:
space:
mode:
Diffstat (limited to 'frontends/php')
-rw-r--r--frontends/php/authentication.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/php/authentication.php b/frontends/php/authentication.php
index bb205e1f..f287335c 100644
--- a/frontends/php/authentication.php
+++ b/frontends/php/authentication.php
@@ -224,7 +224,7 @@ include_once('include/page_header.php');
' ORDER BY alias ASC';
$u_res = DBselect($sql);
while($db_user = Dbfetch($u_res)){
- if((check_perm2login($db_user['userid']) && check_perm2system($db_user['userid'])){
+ if(check_perm2login($db_user['userid']) && check_perm2system($db_user['userid'])){
$usr_test->AddItem($db_user['alias'],$db_user['alias']);
}
}