summaryrefslogtreecommitdiffstats
path: root/owncloud-8.1.5-dont_update_htacess.patch
blob: c62305ceb81af1414b5717cdc24b7f7345ffd6d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
diff --git a/lib/private/setup.php b/lib/private/setup.php
index 50bf0dc..d216675 100644
--- a/lib/private/setup.php
+++ b/lib/private/setup.php
@@ -350,12 +350,6 @@ class Setup {
 			// out that this is indeed an ownCloud data directory
 			file_put_contents($config->getSystemValue('datadirectory', \OC::$SERVERROOT.'/data').'/.ocdata', '');
 
-			// Update htaccess files for apache hosts
-			if (isset($_SERVER['SERVER_SOFTWARE']) && strstr($_SERVER['SERVER_SOFTWARE'], 'Apache')) {
-				self::updateHtaccess();
-				self::protectDataDirectory();
-			}
-
 			//try to write logtimezone
 			if (date_default_timezone_get()) {
 				\OC_Config::setValue('logtimezone', date_default_timezone_get());
diff --git a/lib/private/updater.php b/lib/private/updater.php
index 8f4b81c..22a4861 100644
--- a/lib/private/updater.php
+++ b/lib/private/updater.php
@@ -54,10 +54,10 @@ class Updater extends BasicEmitter {
 
 	/** @var ILogger $log */
 	private $log;
-	
+
 	/** @var \OC\HTTPHelper $helper */
 	private $httpHelper;
-	
+
 	/** @var IConfig */
 	private $config;
 
@@ -287,14 +287,6 @@ class Updater extends BasicEmitter {
 			throw new \Exception('Updates between multiple major versions and downgrades are unsupported.');
 		}
 
-		// Update .htaccess files
-		try {
-			Setup::updateHtaccess();
-			Setup::protectDataDirectory();
-		} catch (\Exception $e) {
-			throw new \Exception($e->getMessage());
-		}
-
 		// FIXME: Some users do not upload the new ca-bundle.crt, let's catch this
 		// in the update. For a newer release we shall use an integrity check after
 		// the update.