From 5a363c1dd81a2c535be1d7d60108b38f4b6b2aa7 Mon Sep 17 00:00:00 2001 From: Gabriel Wicke Date: Thu, 22 Apr 2004 12:02:02 +0000 Subject: [PATCH] another warning fix- please review the mamcached changes, i'm not 100% sure they are correct --- includes/memcached-client.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]; } // }}} -- 2.20.1