aboutsummaryrefslogtreecommitdiffstats
path: root/community/nextcloud/nextcloud10-dont-chmod-config.patch
diff options
context:
space:
mode:
authorLeonardo Arena <rnalrd@alpinelinux.org>2017-11-14 14:07:15 +0000
committerLeonardo Arena <rnalrd@alpinelinux.org>2017-11-14 14:08:04 +0000
commit1f7e3605b0eb2c2d673fcd239272663ae0c90d0b (patch)
treeee302c72881a470fb22166f11a9426198a2d4338 /community/nextcloud/nextcloud10-dont-chmod-config.patch
parentcdb56c9dc7a839c179250dfedf16cd0e9cac10be (diff)
downloadaports-1f7e3605b0eb2c2d673fcd239272663ae0c90d0b.tar.bz2
aports-1f7e3605b0eb2c2d673fcd239272663ae0c90d0b.tar.xz
community/nextcloud: add upstream fix for project issue #6028
Remove chmod() from other places
Diffstat (limited to 'community/nextcloud/nextcloud10-dont-chmod-config.patch')
-rw-r--r--community/nextcloud/nextcloud10-dont-chmod-config.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/community/nextcloud/nextcloud10-dont-chmod-config.patch b/community/nextcloud/nextcloud10-dont-chmod-config.patch
deleted file mode 100644
index fac1313848..0000000000
--- a/community/nextcloud/nextcloud10-dont-chmod-config.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- a/lib/private/Config.php
-+++ b/lib/private/Config.php
-@@ -229,9 +229,6 @@
- touch ($this->configFilePath);
- $filePointer = fopen($this->configFilePath, 'r+');
-
-- // Prevent others not to read the config
-- chmod($this->configFilePath, 0640);
--
- // File does not exist, this can happen when doing a fresh install
- if(!is_resource ($filePointer)) {
- // TODO fix this via DI once it is very clear that this doesn't cause side effects due to initialization order