Details
-
Type: Bug
-
Status: Done/Fixed
-
Priority: Minor
-
Resolution: Fixed/Completed
-
Affects Version/s: 2.0, 2.1.2, 2.1.4, 2.1.5, 2.1, 2.2.0, 2.2.1, 2.2.2
-
Fix Version/s: 2.2.3
-
Component/s: Core CiviCRM
-
Labels:None
Description
Line #399:
if ( !$isDrupal OR !$isJoomla )
{ die( "Unknown user framework" ); }This conditional is always false since $config->userFramework is either Drupal or Joomla.
Fix: ( !$isDrupal && !$isJoomla )