From 4f8168c39ae7b97d00a749596c8774cfc82793ef Mon Sep 17 00:00:00 2001 From: Angie Byron Date: Sat, 29 Nov 2008 23:21:22 +0000 Subject: #338184 by Damien Tournoud: Remove special workarounds for serialize() in the registry. --- includes/registry.inc | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'includes/registry.inc') diff --git a/includes/registry.inc b/includes/registry.inc index e4eb56348..a8a89f217 100644 --- a/includes/registry.inc +++ b/includes/registry.inc @@ -72,7 +72,11 @@ function _registry_rebuild() { $parsed_files = _registry_parse_files($files); $unchanged_resources = array(); - foreach (_registry_get_lookup_cache() as $key => $file) { + $lookup_cache = array(); + if ($cache = cache_get('lookup_cache', 'cache_registry')) { + $lookup_cache = $cache->data; + } + foreach ($lookup_cache as $key => $file) { // If the file for this cached resource is carried over unchanged from // the last registry build, then we can safely re-cache it. if ($file && in_array($file, array_keys($files)) && !in_array($file, $parsed_files)) { @@ -87,7 +91,7 @@ function _registry_rebuild() { // We have some unchanged resources, warm up the cache - no need to pay // for looking them up again. if (count($unchanged_resources) > 0) { - _registry_set_lookup_cache($unchanged_resources); + cache_set('lookup_cache', $unchanged_resources, 'cache_registry'); } } -- cgit v1.2.3