From 64da89bd986c69172f768f41a3a894e4f4be39aa Mon Sep 17 00:00:00 2001 From: Tim Otten Date: Wed, 10 Apr 2013 23:59:56 -0400 Subject: [PATCH] CRM-12321 - Revert "fix minor typo civicrm_cache table" This reverts commit 33318c7196428c8733d3ce87ca3bbc4fc45cd5da. --- CRM/Core/BAO/Cache.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CRM/Core/BAO/Cache.php b/CRM/Core/BAO/Cache.php index 4a21f774c0..e7323eaaa0 100644 --- a/CRM/Core/BAO/Cache.php +++ b/CRM/Core/BAO/Cache.php @@ -172,8 +172,7 @@ class CRM_Core_BAO_Cache extends CRM_Core_DAO_Cache { // set the cache in memory $argString = "CRM_CT_{$group}_{$path}_{$componentID}"; $cache = CRM_Utils_Cache::singleton(); - $data = unserialize($dao->data); - $cache->set($argString, $data); + $cache->set($argString, $dao->data); } /** -- 2.25.1