aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorMichaIng <micha@dietpi.com>2019-10-31 20:15:49 +0100
committerGitHub <noreply@github.com>2019-10-31 20:15:49 +0100
commit5afd7abf4481f019ad0044393b4734645e40f5af (patch)
tree0849f01ebcf912efe99d2df9c334346cf50bf825 /lib
parentc7e66ec848cfce75b8eb3f635f21255e3967def2 (diff)
downloadnextcloud-server-5afd7abf4481f019ad0044393b4734645e40f5af.tar.gz
nextcloud-server-5afd7abf4481f019ad0044393b4734645e40f5af.zip
Add missing newlines to .htaccess
Signed-off-by: MichaIng <micha@dietpi.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/private/Setup.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Setup.php b/lib/private/Setup.php
index 3fbfc3da2ba..e360319c5b6 100644
--- a/lib/private/Setup.php
+++ b/lib/private/Setup.php
@@ -547,7 +547,7 @@ class Setup {
$content .= " Require all denied\n";
$content .= "</IfModule>\n";
$content .= "<IfModule mod_access_compat.c>\n";
- $content .= " Order Allow,Deny";
+ $content .= " Order Allow,Deny\n";
$content .= " Deny from all\n";
$content .= " Satisfy All\n";
$content .= "</IfModule>\n\n";
@@ -555,7 +555,7 @@ class Setup {
$content .= "<IfModule !mod_authz_core.c>\n";
$content .= " <IfModule !mod_access_compat.c>\n";
$content .= " <IfModule mod_authz_host.c>\n";
- $content .= " Order Allow,Deny";
+ $content .= " Order Allow,Deny\n";
$content .= " Deny from all\n";
$content .= " <IifModule>\n";
$content .= " Satisfy All\n";