Issue described at http://en.wikipedia.org/wiki/Wikipedia:Administrators%27_noticeboa...
authorAndrew Garrett <werdna@users.mediawiki.org>
Wed, 31 Jan 2007 08:44:40 +0000 (08:44 +0000)
committerAndrew Garrett <werdna@users.mediawiki.org>
Wed, 31 Jan 2007 08:44:40 +0000 (08:44 +0000)
(inconsistency between "Autoblocker enabled" and "Autoblocker disabled" between Special:Ipblocklist and Special:Log/block.

includes/SpecialBlockip.php

index 9b2ce93..b7518eb 100644 (file)
@@ -312,8 +312,8 @@ class IPBlockForm {
                        $flags[] = 'anononly';
                if( $this->BlockCreateAccount )
                        $flags[] = 'nocreate';
-               if( $this->BlockEnableAutoblock )
-                       $flags[] = 'autoblock';
+               if( !$this->BlockEnableAutoblock )
+                       $flags[] = 'noautoblock';
                return implode( ',', $flags );
        }