From 8d8e80c9112ef27abe5a8ba812bc220256087384 Mon Sep 17 00:00:00 2001 From: Adam Amstrong Date: Sat, 27 Aug 2011 23:12:51 +0000 Subject: [PATCH] fix typo in useradd function for httpauth git-svn-id: http://www.observium.org/svn/observer/trunk@2403 61d68cd4-352d-0410-923a-c4978735b2b8 --- html/includes/authentication/http-auth.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/includes/authentication/http-auth.inc.php b/html/includes/authentication/http-auth.inc.php index aeab81efd..3fa8f0e1a 100644 --- a/html/includes/authentication/http-auth.inc.php +++ b/html/includes/authentication/http-auth.inc.php @@ -44,7 +44,7 @@ function auth_usermanagement() function adduser($username, $password, $level, $email = "", $realname = "") { - return dbInsert(array('username' => $username, 'password' => $password. 'level' => $level, 'email' => $email, 'realname' => $realname), 'users'); + return dbInsert(array('username' => $username, 'password' => $password, 'level' => $level, 'email' => $email, 'realname' => $realname), 'users'); } function user_exists($username)