diff options
author | Tom Needham <needham.thomas@gmail.com> | 2012-01-08 21:18:21 +0000 |
---|---|---|
committer | Tom Needham <needham.thomas@gmail.com> | 2012-01-08 21:18:21 +0000 |
commit | 5e40653713eed01d96841dc93e11534b46a443ee (patch) | |
tree | 583d1c0ddbfdc5488d2f475289c998033a371bc3 /lib/setup.php | |
parent | fbb126cdd9c2fd790ed23be3b370b1ae3efb8ba8 (diff) | |
download | nextcloud-server-5e40653713eed01d96841dc93e11534b46a443ee.tar.gz nextcloud-server-5e40653713eed01d96841dc93e11534b46a443ee.zip |
Missing line return
Diffstat (limited to 'lib/setup.php')
-rw-r--r-- | lib/setup.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/setup.php b/lib/setup.php index 1b74e945196..9a40c36f62c 100644 --- a/lib/setup.php +++ b/lib/setup.php @@ -288,7 +288,7 @@ class OC_Setup { $content.= "php_value post_max_size 512M\n"; $content.= "SetEnv htaccessWorking true\n"; $content.= "</IfModule>\n"; - $content.= "<IfModule mod_rewrite.c>"; + $content.= "<IfModule mod_rewrite.c>\n"; $content.= "RewriteEngine on\n"; $content.= "RewriteRule .* - [env=HTTP_AUTHORIZATION:%{HTTP:Authorization},last]\n"; $content.= "</IfModule>\n"; |