From: atif-shaikh Date: Fri, 10 Apr 2015 12:16:18 +0000 (+0530) Subject: CRM-16257 - "Sorry an error occurred and your information was not saved" if email... X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=70b85f7c108dc3b0228e024363120d5e8926a991;p=civicrm-core.git CRM-16257 - "Sorry an error occurred and your information was not saved" if email contains an image or a table https://issues.civicrm.org/jira/browse/CRM-16257 --- diff --git a/CRM/Core/Invoke.php b/CRM/Core/Invoke.php index c9a4dc4153..7cc88fc74a 100644 --- a/CRM/Core/Invoke.php +++ b/CRM/Core/Invoke.php @@ -401,6 +401,9 @@ class CRM_Core_Invoke { } CRM_Core_DAO_AllCoreTables::reinitializeCache(TRUE); CRM_Core_ManagedEntities::singleton(TRUE)->reconcile(); + + //CRM-16257 update Config.IDS.ini might be an old copy + CRM_Core_IDS::createConfigFile(TRUE); } } diff --git a/CRM/Upgrade/Form.php b/CRM/Upgrade/Form.php index 8587c04636..58b34641be 100644 --- a/CRM/Upgrade/Form.php +++ b/CRM/Upgrade/Form.php @@ -752,6 +752,9 @@ SET version = '$version' // Rebuild all triggers and re-enable logging if needed $logging = new CRM_Logging_Schema(); $logging->fixSchemaDifferences(); + + //CRM-16257 update Config.IDS.ini might be an old copy + CRM_Core_IDS::createConfigFile(TRUE); } /**