diff options
author | Robin Appelman <icewind1991@gmail.com> | 2011-01-22 01:51:13 +0100 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2011-01-22 01:51:13 +0100 |
commit | 9cd4c99918c9a27504c1a8d7a613e95780e76bf3 (patch) | |
tree | b93649c0d6bee35180b8edd0f37198ea4b312420 /inc | |
parent | 93bc69011b7a89a654732496f872a248b69c78c2 (diff) | |
download | nextcloud-server-9cd4c99918c9a27504c1a8d7a613e95780e76bf3.tar.gz nextcloud-server-9cd4c99918c9a27504c1a8d7a613e95780e76bf3.zip |
Add closing tag to config file.
patch by Debayan Banerjee
Diffstat (limited to 'inc')
-rw-r--r-- | inc/lib_config.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/inc/lib_config.php b/inc/lib_config.php index 6863146cde9..75ddaafc316 100644 --- a/inc/lib_config.php +++ b/inc/lib_config.php @@ -134,6 +134,7 @@ class OC_CONFIG{ $configContent .= "\n\$CONFIG_$key = $value;"; // e.g. $CONFIG_PI = 3.14; } } + $configContent .= "\n?>"; $filename = "$SERVERROOT/config/config.php"; file_put_contents($filename, $configContent); } |