From: Elin Waring Date: Fri, 24 Apr 2015 11:24:44 +0000 (-0400) Subject: Remove code supporting no longer supported Joomla passwords (from Joomla 1.0) and... X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=94f9f81aed85ac070bf2c5646034f1b061c9c119;p=civicrm-core.git Remove code supporting no longer supported Joomla passwords (from Joomla 1.0) and fixing a Joomla 1.5 style query that won't work in 1.6+. --- diff --git a/CRM/Utils/System/Joomla.php b/CRM/Utils/System/Joomla.php index f270450164..9447d5dc20 100644 --- a/CRM/Utils/System/Joomla.php +++ b/CRM/Utils/System/Joomla.php @@ -109,7 +109,7 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base { } /** - * Check if username and email exists in the drupal db. + * Check if username and email exists in the Joomla db. * * @param array $params * Array of name and mail values. @@ -143,7 +143,7 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base { $db->setQuery($query, 0, 10); $users = $db->loadAssocList(); - $row = array();; + $row = array(); if (count($users)) { $row = $users[0]; } @@ -323,7 +323,10 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base { */ public function setEmail(&$user) { global $database; - $query = "SELECT email FROM #__users WHERE id='$user->id'"; + $query = $db->getQuery(TRUE); + $query->select($db->quoteName('email')) + ->from($db->quoteName('#__users')) + ->where($db->quoteName('id') . ' = ' . $user->id); $database->setQuery($query); $user->email = $database->loadResult(); } @@ -383,17 +386,10 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base { (version_compare(JVERSION, '3.0', 'ge') && version_compare(JVERSION, '3.2.1', 'lt')) ) { // now check password - if (strpos($dbPassword, ':') === FALSE) { - if ($dbPassword != md5($password)) { - return FALSE; - } - } - else { list($hash, $salt) = explode(':', $dbPassword); $cryptpass = md5($password . $salt); if ($hash != $cryptpass) { return FALSE; - } } } else {