From: Gabriel Wicke Date: Thu, 22 Apr 2004 12:02:02 +0000 (+0000) Subject: another warning fix- please review the mamcached changes, i'm not 100% sure they... X-Git-Tag: 1.3.0beta1~331 X-Git-Url: http://git.cyclocoop.org/geomaker.php?a=commitdiff_plain;h=5a363c1dd81a2c535be1d7d60108b38f4b6b2aa7;p=lhc%2Fweb%2Fwiklou.git another warning fix- please review the mamcached changes, i'm not 100% sure they are correct --- diff --git a/includes/memcached-client.php b/includes/memcached-client.php index d3d7d70b65..934ca7680f 100644 --- a/includes/memcached-client.php +++ b/includes/memcached-client.php @@ -390,7 +390,7 @@ class memcached foreach ($val as $k => $v) $this->_debugprint(@sprintf("MemCache: sock %s got %s => %s\r\n", serialize($sock), $k, $v)); - return $val[$key]; + return @$val[$key]; } // }}}