From: Brion Vibber Date: Wed, 13 Aug 2003 11:08:07 +0000 (+0000) Subject: update memcached client to 1.0.9 X-Git-Tag: 1.1.0~348 X-Git-Url: http://git.cyclocoop.org/%24self?a=commitdiff_plain;h=16b8295b8856335395c66c0fd8609cc2a47bfd66;p=lhc%2Fweb%2Fwiklou.git update memcached client to 1.0.9 --- diff --git a/includes/MemCachedClient.inc.php b/includes/MemCachedClient.inc.php index b1a35a230b..e77e8f5023 100644 --- a/includes/MemCachedClient.inc.php +++ b/includes/MemCachedClient.inc.php @@ -19,7 +19,7 @@ /** * version string */ -define("MC_VERSION", "1.0.8"); +define("MC_VERSION", "1.0.9"); /** * int, buffer size used for sending and receiving * data from sockets @@ -996,7 +996,7 @@ class MemCachedClient $bytes_read = 0; // get the left over data after the header is read - $line = substr($line, strpos($line, "\r\n")+1, strlen($line)); + $line = substr($line, strpos($line, "\r\n")+2, strlen($line)); } else {