From 85014ef62c0aeba73c7d5c50da52a4121924b2bc Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Mon, 5 Mar 2007 04:51:01 +0000 Subject: [PATCH] r1431: Remove "password" from the list of fields to sync so that existing Bugdar users don't have their password killed --- includes/auth/auth.php | 4 ++-- includes/auth/auth_vbulletin.php | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/includes/auth/auth.php b/includes/auth/auth.php index cbe5880..ea1d3ed 100644 --- a/includes/auth/auth.php +++ b/includes/auth/auth.php @@ -66,14 +66,14 @@ class Authentication var $bugdarUser; /** - * Mapping of Bugdar fields to authentication database fields; these will be synced between databases upon login + * Mapping of Bugdar fields to authentication database fields; these will be synced between databases upon login. + * AT THE VERY MINIMUM, YOU MUST MAP THESE FIELDS: * @var array */ var $fieldMap = array( 'authid' => null, 'displayname' => null, 'email' => null, - 'password' => null, ); // ################################################################### diff --git a/includes/auth/auth_vbulletin.php b/includes/auth/auth_vbulletin.php index c299748..0ff6e1e 100644 --- a/includes/auth/auth_vbulletin.php +++ b/includes/auth/auth_vbulletin.php @@ -56,7 +56,6 @@ class AuthenticationVbulletin extends Authentication 'authid' => 'userid', 'email' => 'email', 'timezone' => 'timezoneoffset', - 'password' => 'passworrd', 'displayname' => 'username' ); -- 2.22.5