From 6737e31f399cc0930d36bd52b64aca4cd12311a8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Thu, 29 Oct 2009 21:44:13 +0000 Subject: [PATCH] Cache type 'refsystem' now supported --- inc/classes/cachesystem.class.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/inc/classes/cachesystem.class.php b/inc/classes/cachesystem.class.php index 89b7998102..78b72f8101 100644 --- a/inc/classes/cachesystem.class.php +++ b/inc/classes/cachesystem.class.php @@ -163,6 +163,9 @@ class CacheSystem { } elseif ($this->name == 'refdepths') { // Referal levels $GLOBALS['cache_array']['refdepths'][$k][$data['id']] = $v; + } elseif ($this->name == 'refsystem') { + // Referal system + $GLOBALS['cache_array']['refsystem'][$k][$data['id']] = $v; } elseif ($this->name == 'revision') { // Revision data $GLOBALS['cache_array']['revision'][$k] = $v; -- 2.30.2