Add closing tag to config file.

patch by Debayan Banerjee
This commit is contained in:
Robin Appelman 2011-01-22 01:51:13 +01:00
parent 93bc69011b
commit 9cd4c99918

View file

@ -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);
}