From 781308b52b545bb7d9cb1790af061ef351fd4e23 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sat, 22 Sep 2007 18:09:06 +0000 Subject: [PATCH] r1603: Fixing a small variable capitalization error * includes/auth/auth.php: (Authentication::_createBugdarUser): Changed $authDb to $authdb --- docs/changes.txt | 1 + includes/auth/auth.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/changes.txt b/docs/changes.txt index 35d8bd4..80bbe55 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -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 =============================== diff --git a/includes/auth/auth.php b/includes/auth/auth.php index 2020084..34f7cd0 100644 --- a/includes/auth/auth.php +++ b/includes/auth/auth.php @@ -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(); -- 2.22.5