From: kurund Date: Sun, 7 Apr 2013 17:34:04 +0000 (+0530) Subject: fix minor typo civicrm_cache table X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=33318c7196428c8733d3ce87ca3bbc4fc45cd5da;p=civicrm-core.git fix minor typo civicrm_cache table --- diff --git a/CRM/Core/BAO/Cache.php b/CRM/Core/BAO/Cache.php index e7323eaaa0..4a21f774c0 100644 --- a/CRM/Core/BAO/Cache.php +++ b/CRM/Core/BAO/Cache.php @@ -172,7 +172,8 @@ 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(); - $cache->set($argString, $dao->data); + $data = unserialize($dao->data); + $cache->set($argString, $data); } /**