r1603: Fixing a small variable capitalization error
authorRobert Sesek <rsesek@bluestatic.org>
Sat, 22 Sep 2007 18:09:06 +0000 (18:09 +0000)
committerRobert Sesek <rsesek@bluestatic.org>
Sat, 22 Sep 2007 18:09:06 +0000 (18:09 +0000)
* includes/auth/auth.php:
(Authentication::_createBugdarUser): Changed $authDb to $authdb

docs/changes.txt
includes/auth/auth.php

index 35d8bd40de1d94d140db52910b687ec871281da9..80bbe55a1170079ee75e7bc54cc8c46f7d46ce54 100644 (file)
@@ -10,6 +10,7 @@
 - Change: Do not show the version number on non-admin pages (bug://report/95)
 - Fixed: If a user has set a language that does not exist anymore, then bug notifications would fail (bug://report/97)
 - Fixed: Users of UTF8 languages would experience problems after upgrading (if the $utf8 config directive as ON) because the installer wasn't running in UTF8
+- Fixed: In Authentication::_createBugdarUser there was a variable capitalization error (bug://report/106)
 
 1.2.1
 ===============================
index 2020084321b3dd21ffb81d6b6a1e03f071c86d19..34f7cd053358c473be6cf223c13ddc8e650ea45a 100644 (file)
@@ -279,7 +279,7 @@ class Authentication
                        $user = new UserAPI($this->registry);
                        foreach ($this->fieldMap AS $bugdar => $authdb)
                        {
-                               $user->set($bugdar, $this->authUser["$authDb"]);
+                               $user->set($bugdar, $this->authUser["$authdb"]);
                        }
                        $user->set('usergroupid', 2);
                        $user->insert();