From 8e3f74f59dec330cc4bc5d883b0f7e3d8f418942 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Thu, 12 Nov 2009 22:33:12 +0000 Subject: [PATCH] One more fix for r58949: convert these lines too *STAB* --- includes/memcached-client.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/includes/memcached-client.php b/includes/memcached-client.php index c54263418a..76bcb513e1 100644 --- a/includes/memcached-client.php +++ b/includes/memcached-client.php @@ -533,7 +533,7 @@ class memcached * @return boolean * @access public */ - function replace ($key, $value, $exp=0) + function replace ($key, $value, $exp=0) { return $this->_set('replace', $key, $value, $exp); } @@ -591,7 +591,7 @@ class memcached * @return boolean TRUE on success * @access public */ - function set ($key, $value, $exp=0) + function set ($key, $value, $exp=0) { return $this->_set('set', $key, $value, $exp); } @@ -606,7 +606,7 @@ class memcached * * @access public */ - function set_compress_threshold ($thresh) + function set_compress_threshold ($thresh) { $this->_compress_threshold = $thresh; } -- 2.20.1