mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 00:32:29 -04:00
Merge pull request #42384 from nextcloud/backport/42298/stable28
[stable28] Don't write back .htaccess file on a RO filesystem
This commit is contained in:
commit
cbc812137b
1 changed files with 4 additions and 0 deletions
|
|
@ -522,6 +522,10 @@ class Setup {
|
|||
\OCP\Server::get(Installer::class)
|
||||
);
|
||||
|
||||
if (!is_writable($setupHelper->pathToHtaccess())) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$htaccessContent = file_get_contents($setupHelper->pathToHtaccess());
|
||||
$content = "#### DO NOT CHANGE ANYTHING ABOVE THIS LINE ####\n";
|
||||
$htaccessContent = explode($content, $htaccessContent, 2)[0];
|
||||
|
|
|
|||
Loading…
Reference in a new issue