diff options
-rw-r--r-- | includes/cache.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/cache.inc b/includes/cache.inc index b45d26b27..453e2dc9b 100644 --- a/includes/cache.inc +++ b/includes/cache.inc @@ -18,7 +18,7 @@ function _cache_get_object($bin) { // We do not use drupal_static() here because we do not want to change the // storage of a cache bin mid-request. - static $cache_objects, $default_class; + static $cache_objects; if (!isset($cache_objects[$bin])) { $class = variable_get('cache_class_' . $bin); if (!isset($class)) { |