Follow up r63404. If we are in safe mode, we do not want hashed uploads.
authorPlatonides <platonides@users.mediawiki.org>
Thu, 12 Aug 2010 09:55:05 +0000 (09:55 +0000)
committerPlatonides <platonides@users.mediawiki.org>
Thu, 12 Aug 2010 09:55:05 +0000 (09:55 +0000)
includes/installer/LocalSettingsGenerator.php

index d09a56f..f31e045 100644 (file)
@@ -156,7 +156,7 @@ class LocalSettingsGenerator {
                }
                
                $rights = $this->values['wgRightsUrl'] ? '' : '#';
-               $hashedUploads = $this->safeMode ? '#' : '';
+               $hashedUploads = $this->safeMode ? '' : '#';
                
                switch( $this->values['wgMainCacheType'] ) {
                        case 'anything':
@@ -301,4 +301,4 @@ if ( \$wgCommandLineMode ) {
 ";
        }
        
-}
\ No newline at end of file
+}