fixed bug
authorTim Starling <tstarling@users.mediawiki.org>
Mon, 28 Mar 2005 15:57:18 +0000 (15:57 +0000)
committerTim Starling <tstarling@users.mediawiki.org>
Mon, 28 Mar 2005 15:57:18 +0000 (15:57 +0000)
includes/User.php

index 5f0e2c2..fdb1dc8 100644 (file)
@@ -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' );
                        }
                }