From 8111f69c835c46b2d21a9b742b099ac13256999b Mon Sep 17 00:00:00 2001 From: Platonides Date: Thu, 12 Aug 2010 09:55:05 +0000 Subject: [PATCH] Follow up r63404. If we are in safe mode, we do not want hashed uploads. --- includes/installer/LocalSettingsGenerator.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +} -- 2.20.1