diff --git a/CRM/Core/Resources.php b/CRM/Core/Resources.php index d6e0a2aa6140..7be010ab6bb1 100644 --- a/CRM/Core/Resources.php +++ b/CRM/Core/Resources.php @@ -690,7 +690,7 @@ public static function outputLocalizationJS() { 'filters' => self::getEntityRefFilters(), ), 'ajaxPopupsEnabled' => self::singleton()->ajaxPopupsEnabled, - 'allowAlertAutodismissal' => Civi::settings()->get('allow_alert_autodismissal'), + 'allowAlertAutodismissal' => (bool) Civi::settings()->get('allow_alert_autodismissal'), ); print CRM_Core_Smarty::singleton()->fetchWith('CRM/common/l10n.js.tpl', $vars); CRM_Utils_System::civiExit(); diff --git a/templates/CRM/common/l10n.js.tpl b/templates/CRM/common/l10n.js.tpl index 9bae533886bd..b2274723b373 100644 --- a/templates/CRM/common/l10n.js.tpl +++ b/templates/CRM/common/l10n.js.tpl @@ -33,7 +33,7 @@ $.datepicker._defaults.dateFormat = CRM.config.dateInputFormat = {$config->dateInputFormat|@json_encode}; CRM.config.timeIs24Hr = {if $config->timeInputFormat eq 2}true{else}false{/if}; CRM.config.ajaxPopupsEnabled = {$ajaxPopupsEnabled|@json_encode}; - CRM.config.allowAlertAutodismissal = {$allowAlertAutodismissal}; + CRM.config.allowAlertAutodismissal = {$allowAlertAutodismissal|@json_encode}; // Merge entityRef settings CRM.config.entityRef = $.extend({ldelim}{rdelim}, {$entityRef|@json_encode}, CRM.config.entityRef || {ldelim}{rdelim});