From e346e0bfeec153e3c48c017ac032d3a81777ceea Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Sat, 27 Sep 2008 23:48:21 +0000 Subject: [PATCH] Suppress errors on count increment (bug 13758) --- 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 0640adf211..e1a8d449de 100644 --- a/includes/memcached-client.php +++ b/includes/memcached-client.php @@ -454,7 +454,7 @@ class memcached if (!$this->_active) return false; - $this->stats['get_multi']++; + @$this->stats['get_multi']++; $sock_keys = array(); foreach ($keys as $key) -- 2.20.1