From c283b4ec757354f7b74fa39c58a0ffcec6b26450 Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Mon, 14 Nov 2005 12:39:32 +0000 Subject: [PATCH] fixed possible uninitialized $return --- lam/lib/cache.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/lam/lib/cache.inc b/lam/lib/cache.inc index f2dafca7..72c923ea 100644 --- a/lam/lib/cache.inc +++ b/lam/lib/cache.inc @@ -80,6 +80,7 @@ class cache { * */ function get_cache($attributes, $objectClass, $scopelist) { + $return = array(); $this->refresh_cache(); if (is_array($scopelist)) $scopes = $scopelist; else $scopes = array($scopelist);