From fa7c01d9b1906336c98b01666a45209670f18a7e Mon Sep 17 00:00:00 2001 From: Jens Frank Date: Sun, 23 Jan 2005 16:42:06 +0000 Subject: [PATCH] BUG#1389 i18n for proxy blocker message --- includes/User.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/User.php b/includes/User.php index 036d8837ea..ec31dc4e9e 100644 --- a/includes/User.php +++ b/includes/User.php @@ -271,8 +271,8 @@ class User { # Proxy blocking if ( !$this->mBlockedby ) { if ( array_key_exists( $wgIP, $wgProxyList ) ) { + $this->mBlockedby = wfMsg( 'proxyblocker' ); $this->mBlockreason = wfMsg( 'proxyblockreason' ); - $this->mBlockedby = "Proxy blocker"; } } } -- 2.20.1