summaryrefslogtreecommitdiffstats
path: root/frontends/php
diff options
context:
space:
mode:
authorartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-07-02 14:22:08 +0000
committerartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-07-02 14:22:08 +0000
commite9e80b1adb24d4c1cfffdc3e5837797a26c877cc (patch)
treedbbb3a6d17a1c7a75479153c22e6d9995a40872c /frontends/php
parent27413fa685163ad085ba5b3b61015ae303cf7e04 (diff)
downloadzabbix-e9e80b1adb24d4c1cfffdc3e5837797a26c877cc.tar.gz
zabbix-e9e80b1adb24d4c1cfffdc3e5837797a26c877cc.tar.xz
zabbix-e9e80b1adb24d4c1cfffdc3e5837797a26c877cc.zip
- [DEV-144] typo fix (Artem)
git-svn-id: svn://svn.zabbix.com/trunk@5816 97f52cf1-0a1b-0410-bd0e-c28be96e8082
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']);
}
}