From 2aad87fa7b70d8385bf51cb2c695321f7963eaf4 Mon Sep 17 00:00:00 2001 From: Herb vd Dool Date: Mon, 17 Jul 2017 07:10:24 -0400 Subject: [PATCH] fix syntax error --- templates/CRM/common/civicrm.settings.php.template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/CRM/common/civicrm.settings.php.template b/templates/CRM/common/civicrm.settings.php.template index faa1726747..4aca967b25 100644 --- a/templates/CRM/common/civicrm.settings.php.template +++ b/templates/CRM/common/civicrm.settings.php.template @@ -443,7 +443,7 @@ if (!defined('CIVICRM_CLEANURL')) { if ( function_exists('variable_get') && variable_get('clean_url', '0') != '0') { define('CIVICRM_CLEANURL', 1 ); } - elseif { function_exists('config_get') && config_get('system.core', 'clean_url') != 0) { + elseif ( function_exists('config_get') && config_get('system.core', 'clean_url') != 0) { define('CIVICRM_CLEANURL', 1 ); } else { -- 2.25.1