One more fix for r58949: convert these lines too *STAB*
authorAlexandre Emsenhuber <ialex@users.mediawiki.org>
Thu, 12 Nov 2009 22:33:12 +0000 (22:33 +0000)
committerAlexandre Emsenhuber <ialex@users.mediawiki.org>
Thu, 12 Nov 2009 22:33:12 +0000 (22:33 +0000)
includes/memcached-client.php

index c542634..76bcb51 100644 (file)
@@ -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;
        }