From 8c49f7ffd9c9f62896eef6c545c5ff6d41e2af83 Mon Sep 17 00:00:00 2001 From: Andrew Garrett Date: Sun, 7 Jan 2007 06:21:54 +0000 Subject: [PATCH] Fix for r18904 where autoblocker would not correctly block ipblock-exempt users. --- includes/User.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/includes/User.php b/includes/User.php index 9bbe1afadb..079e103c4c 100644 --- a/includes/User.php +++ b/includes/User.php @@ -836,15 +836,15 @@ class User { $this->mBlockedby = 0; $ip = wfGetIP(); - if ($this->isAllowed( 'ipblock-exempt' ) ) { - # Exempt from all types of IP-block - $ip = null; + if (!$this->isAllowed( 'ipblock-exempt' ) ) { + # Check for IP blocks - ipblock-exempt is exempt from all types of IP block. + $check_ip = $ip; } # User/IP blocking $this->mBlock = new Block(); $this->mBlock->fromMaster( !$bFromSlave ); - if ( $this->mBlock->load( $ip , $this->mId ) ) { + if ( $this->mBlock->load( $check_ip , $this->mId ) ) { wfDebug( __METHOD__.": Found block.\n" ); $this->mBlockedby = $this->mBlock->mBy; $this->mBlockreason = $this->mBlock->mReason; @@ -860,14 +860,14 @@ class User { if ( !$this->isAllowed('proxyunbannable') && !in_array( $ip, $wgProxyWhitelist ) ) { # Local list - if ( wfIsLocallyBlockedProxy( $ip ) ) { + if ( wfIsLocallyBlockedProxy( $check_ip ) ) { $this->mBlockedby = wfMsg( 'proxyblocker' ); $this->mBlockreason = wfMsg( 'proxyblockreason' ); } # DNSBL if ( !$this->mBlockedby && $wgEnableSorbs && !$this->getID() ) { - if ( $this->inSorbsBlacklist( $ip ) ) { + if ( $this->inSorbsBlacklist( $check_ip ) ) { $this->mBlockedby = wfMsg( 'sorbs' ); $this->mBlockreason = wfMsg( 'sorbsreason' ); } -- 2.20.1