From edf79396ee28bd2752615567ecc9cfe1d9dfbcdf Mon Sep 17 00:00:00 2001 From: Tim Otten Date: Fri, 8 Mar 2013 05:24:02 -0500 Subject: [PATCH] CRM-11925 - Fix error message --- CRM/Core/Config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Core/Config.php b/CRM/Core/Config.php index 668bb7a8b4..b6b3faf484 100644 --- a/CRM/Core/Config.php +++ b/CRM/Core/Config.php @@ -676,7 +676,7 @@ class CRM_Core_Config extends CRM_Core_Config_Variables { if (!empty($modules_with_perms)) { CRM_Core_Session::setStatus( ts('Some modules define permissions, but the CMS cannot store them: %1', array( - array(1 => implode(', ', $modules_with_perms)) + 1 => implode(', ', $modules_with_perms), )), ts('Permission Error'), 'error' -- 2.25.1