Fix code style
authorElin Waring <elin.waring@gmail.com>
Fri, 24 Apr 2015 11:53:00 +0000 (07:53 -0400)
committerElin Waring <elin.waring@gmail.com>
Fri, 24 Apr 2015 11:53:00 +0000 (07:53 -0400)
CRM/Utils/System/Joomla.php

index 9447d5dc20cc8801d3ebdabcd58e1b826e590acc..19e0b5d46b29dbd99fc7c8bd5ff8ee5319f9ed0c 100644 (file)
@@ -386,11 +386,11 @@ 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
-          list($hash, $salt) = explode(':', $dbPassword);
-          $cryptpass = md5($password . $salt);
-          if ($hash != $cryptpass) {
+        list($hash, $salt) = explode(':', $dbPassword);
+        $cryptpass = md5($password . $salt);
+        if ($hash != $cryptpass) {
             return FALSE;
-        }
+         }
       }
       else {
         if (!JUserHelper::verifyPassword($password, $dbPassword, $dbId)) {