Not sure exactly why this parameter was being passed (much less why global $IP was...
authorChad Horohoe <demon@users.mediawiki.org>
Thu, 5 Mar 2009 18:42:52 +0000 (18:42 +0000)
committerChad Horohoe <demon@users.mediawiki.org>
Thu, 5 Mar 2009 18:42:52 +0000 (18:42 +0000)
includes/specials/SpecialUnlockdb.php

index 0bf7e5a..a3e8a0c 100644 (file)
@@ -98,10 +98,9 @@ END
 
        function showSuccess() {
                global $wgOut;
-               global $ip;
 
                $wgOut->setPagetitle( wfMsg( "unlockdb" ) );
                $wgOut->setSubtitle( wfMsg( "unlockdbsuccesssub" ) );
-               $wgOut->addWikiMsg( "unlockdbsuccesstext", $ip );
+               $wgOut->addWikiMsg( "unlockdbsuccesstext" );
        }
 }