From 22c6ce899a79fc1f3ebc6993e7fe8e5cab41e4e0 Mon Sep 17 00:00:00 2001 From: Tim Starling Date: Mon, 28 Mar 2005 15:57:18 +0000 Subject: [PATCH] fixed bug --- includes/User.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/User.php b/includes/User.php index 5f0e2c2ca8..fdb1dc8b4d 100644 --- a/includes/User.php +++ b/includes/User.php @@ -296,8 +296,8 @@ class User { # DNSBL if ( !$this->mBlockedby && $wgEnableSorbs ) { if ( $this->inSorbsBlacklist( $wgIP ) ) { - $this->mBlockedBy = wfMsg( 'sorbs' ); - $this->mBlockereason = wfMsg( 'sorbsreason' ); + $this->mBlockedby = wfMsg( 'sorbs' ); + $this->mBlockreason = wfMsg( 'sorbsreason' ); } } -- 2.20.1