From c8113ad020ee684a9d9ea257678d522490f44ebc Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Sun, 21 Sep 2008 20:25:21 +0000 Subject: [PATCH] Fatal error: Call to undefined function wfMemc() in includes/Block.php on line 550 --- includes/Block.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Block.php b/includes/Block.php index 49e41278c4..528f580c46 100644 --- a/includes/Block.php +++ b/includes/Block.php @@ -547,7 +547,7 @@ class Block // Try to get the autoblock_whitelist from the cache, as it's faster // than getting the msg raw and explode()'ing it. - $key = wfMemc( 'ipb', 'autoblock', 'whitelist' ); + $key = wfMemcKey( 'ipb', 'autoblock', 'whitelist' ); $lines = $wgMemc->get( $key ); if ( !$lines ) { $lines = explode( "\n", wfMsgForContentNoTrans( 'autoblock_whitelist' ) ); -- 2.20.1