Details
-
Type: Bug
-
Status: Done/Fixed
-
Priority: Trivial
-
Resolution: Fixed/Completed
-
Affects Version/s: 4.7
-
Fix Version/s: 4.7.9
-
Component/s: Drupal Integration Modules
-
Labels:
-
Documentation Required?:None
-
Funding Source:Contributed Code
Description
Thought this was quite weird to read so making it read a bit more sanely to my eye.
Before:
{{$error = include('CRM/Core/Config.php');
if (!$error)
After:
{{if (!include('CRM/Core/Config.php')) { // do error }
}}