r1431: Remove "password" from the list of fields to sync so that existing Bugdar...
authorRobert Sesek <rsesek@bluestatic.org>
Mon, 5 Mar 2007 04:51:01 +0000 (04:51 +0000)
committerRobert Sesek <rsesek@bluestatic.org>
Mon, 5 Mar 2007 04:51:01 +0000 (04:51 +0000)
includes/auth/auth.php
includes/auth/auth_vbulletin.php

index cbe5880b571dc6f75065d7afc1967ae1071c6ca5..ea1d3edc1fb3adee7d4933c693621887dd54b7dc 100644 (file)
@@ -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,
        );
        
        // ###################################################################
index c299748a4af21a45ebbb8eb7930dfd0364403fb4..0ff6e1e120191492512f2edd37bcbca0440c6154 100644 (file)
@@ -56,7 +56,6 @@ class AuthenticationVbulletin extends Authentication
                'authid'                => 'userid',
                'email'                 => 'email',
                'timezone'              => 'timezoneoffset',
-               'password'              => 'passworrd',
                'displayname'   => 'username'
        );