From: Platonides Date: Thu, 12 Aug 2010 09:55:05 +0000 (+0000) Subject: Follow up r63404. If we are in safe mode, we do not want hashed uploads. X-Git-Tag: 1.31.0-rc.0~35538 X-Git-Url: http://git.cyclocoop.org/%7B%24admin_url%7Dmes_infos.php?a=commitdiff_plain;h=8111f69c835c46b2d21a9b742b099ac13256999b;p=lhc%2Fweb%2Fwiklou.git Follow up r63404. If we are in safe mode, we do not want hashed uploads. --- diff --git a/includes/installer/LocalSettingsGenerator.php b/includes/installer/LocalSettingsGenerator.php index d09a56f760..f31e0458eb 100644 --- a/includes/installer/LocalSettingsGenerator.php +++ b/includes/installer/LocalSettingsGenerator.php @@ -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 +}