Memcached does not like spaces in keys
This commit is contained in:
parent
13a69ea262
commit
45130adc36
1 changed files with 1 additions and 0 deletions
|
|
@ -2835,6 +2835,7 @@ function wfFormatStackFrame($frame) {
|
|||
function wfMemcKey( /*... */ ) {
|
||||
$args = func_get_args();
|
||||
$key = wfWikiID() . ':' . implode( ':', $args );
|
||||
$key = str_replace( ' ', '_', $key );
|
||||
return $key;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue