From 70b85f7c108dc3b0228e024363120d5e8926a991 Mon Sep 17 00:00:00 2001 From: atif-shaikh Date: Fri, 10 Apr 2015 17:46:18 +0530 Subject: [PATCH] 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 --- CRM/Core/Invoke.php | 3 +++ CRM/Upgrade/Form.php | 3 +++ 2 files changed, 6 insertions(+) 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); } /** -- 2.25.1