From 7e383efcddc4b83aae20af45c8dc489d77d824df Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sat, 22 Sep 2007 18:10:00 +0000 Subject: [PATCH] r1604: Merging the changes from r1603 from the trunk to the branch --- 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 d30f57f..d1842d5 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -6,6 +6,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