projects
/
civicrm-core.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
94f9f81
)
Fix code style
author
Elin Waring
<elin.waring@gmail.com>
Fri, 24 Apr 2015 11:53:00 +0000
(07:53 -0400)
committer
Elin Waring
<elin.waring@gmail.com>
Fri, 24 Apr 2015 11:53:00 +0000
(07:53 -0400)
CRM/Utils/System/Joomla.php
patch
|
blob
|
blame
|
history
diff --git
a/CRM/Utils/System/Joomla.php
b/CRM/Utils/System/Joomla.php
index 9447d5dc20cc8801d3ebdabcd58e1b826e590acc..19e0b5d46b29dbd99fc7c8bd5ff8ee5319f9ed0c 100644
(file)
--- a/
CRM/Utils/System/Joomla.php
+++ b/
CRM/Utils/System/Joomla.php
@@
-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)) {