From 2ea040cd24640d5cdb43b781025f7e7f96c87be4 Mon Sep 17 00:00:00 2001 From: hugetoad Date: Mon, 4 Jul 2005 06:34:33 +0000 Subject: - new utility zabbix_get (Alexei) - added src/zabbix_get/* (Alexei) - user timeout time is configurable (Alexei) - added support of locales on user level (Alexei) - added support of user profiles (Alexei) - removed include/local_en.inc.php - added include/locales/.htaccess (Alexei) - added include/locales/en_en.inc.php (Alexei) - added include/locales/de_de.inc.php (Alexei) - added include/locales/en_en.inc.php (Alexei) - added column users.lang (Alexei) - added column users.autologout (Alexei) - added frontends/php/profile.php (Alexei) git-svn-id: svn://svn.zabbix.com/trunk@1900 97f52cf1-0a1b-0410-bd0e-c28be96e8082 --- frontends/php/users.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'frontends/php/users.php') diff --git a/frontends/php/users.php b/frontends/php/users.php index 2afe7395..7eddfc33 100644 --- a/frontends/php/users.php +++ b/frontends/php/users.php @@ -48,7 +48,7 @@ { if($_GET["password1"]==$_GET["password2"]) { - $result=add_user($_GET["name"],$_GET["surname"],$_GET["alias"],$_GET["password1"],$_GET["url"]); + $result=add_user($_GET["name"],$_GET["surname"],$_GET["alias"],$_GET["password1"],$_GET["url"],$_GET["autologout"],$_GET["lang"]); show_messages($result, S_USER_ADDED, S_CANNOT_ADD_USER); if($result) add_audit(AUDIT_ACTION_ADD,AUDIT_RESOURCE_USER,"User alias [".addslashes($_GET["alias"])."] name [".addslashes($_GET["name"])."] surname [".addslashes($_GET["surname"])."]]"); @@ -82,7 +82,7 @@ { if($_GET["password1"]==$_GET["password2"]) { - $result=update_user($_GET["userid"],$_GET["name"],$_GET["surname"],$_GET["alias"],$_GET["password1"],$_GET["url"]); + $result=update_user($_GET["userid"],$_GET["name"],$_GET["surname"],$_GET["alias"],$_GET["password1"],$_GET["url"],$_GET["autologout"],$_GET["lang"]); show_messages($result, S_USER_UPDATED, S_CANNOT_UPDATE_USER); if($result) add_audit(AUDIT_ACTION_UPDATE,AUDIT_RESOURCE_USER,"User alias [".addslashes($_GET["alias"])."] name [".addslashes($_GET["name"])."] surname [".addslashes($_GET["surname"])."]]"); -- cgit