Update scripts.php

Remove the extra ) to fix the syntax.
This commit is contained in:
FusionPBX
2016-07-08 17:09:09 -06:00
committed by GitHub
parent 904a52434a
commit 1ceee17605

View File

@@ -214,7 +214,7 @@ if (!class_exists('scripts')) {
}
$tmp .= $this->correct_path(" document_root = [[".$_SERVER["DOCUMENT_ROOT"].PROJECT_PATH."]];\n");
$tmp .= $this->correct_path(" project_path = [[".PROJECT_PATH."]];\n");
$tmp .= $this->correct_path(" http_protocol = [[".$_SERVER['HTTP_PROTOCOL'])."]];\n");
$tmp .= $this->correct_path(" http_protocol = [[".$_SERVER['HTTP_PROTOCOL']."]];\n");
$tmp .= "\n";
$tmp .= "--store settings in memcache\n";
@@ -320,4 +320,4 @@ if (!class_exists('scripts')) {
$obj = new scripts;
$obj->write_config();
*/
?>
?>