Rm debugging hack from r94029.
authorMax Semenik <maxsem@users.mediawiki.org>
Sat, 13 Aug 2011 14:24:24 +0000 (14:24 +0000)
committerMax Semenik <maxsem@users.mediawiki.org>
Sat, 13 Aug 2011 14:24:24 +0000 (14:24 +0000)
includes/installer/Installer.php

index c29dd66..3544753 100644 (file)
@@ -810,7 +810,7 @@ abstract class Installer {
         * Scare user to death if they have mod_security
         */
        protected function envCheckModSecurity() {
-               if ( !self::apacheModulePresent( 'mod_security' ) ) {
+               if ( self::apacheModulePresent( 'mod_security' ) ) {
                        $this->showMessage( 'config-mod-security' );
                }
        }