Memcached does not like spaces in keys
authorNiklas Laxström <nikerabbit@users.mediawiki.org>
Mon, 3 Aug 2009 11:36:47 +0000 (11:36 +0000)
committerNiklas Laxström <nikerabbit@users.mediawiki.org>
Mon, 3 Aug 2009 11:36:47 +0000 (11:36 +0000)
includes/GlobalFunctions.php

index af96eb1..3fc61e6 100644 (file)
@@ -2835,6 +2835,7 @@ function wfFormatStackFrame($frame) {
 function wfMemcKey( /*... */ ) {
        $args = func_get_args();
        $key = wfWikiID() . ':' . implode( ':', $args );
+       $key = str_replace( ' ', '_', $key );
        return $key;
 }