Skip to content
Snippets Groups Projects
Commit 33318c71 authored by Kurund Jalmi's avatar Kurund Jalmi
Browse files

fix minor typo civicrm_cache table

parent d9d00494
Branches
Tags
No related merge requests found
......@@ -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);
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment