Details
-
Type: Bug
-
Status: Done/Fixed
-
Priority: Trivial
-
Resolution: Fixed/Completed
-
Affects Version/s: 4.3.7
-
Fix Version/s: 4.3.8
-
Component/s: Core CiviCRM
-
Labels:None
Description
function user_authenticate returns a UID in D7 but returns the user object in D6
Thus around line 740 of CRM/Utils/System/Drupal6.php should be:
$account = $uid;
and not:
// $account = user_load($uid);