From 1ceee17605a253b5f74966f5997b6f0b232036fe Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Fri, 8 Jul 2016 17:09:09 -0600 Subject: [PATCH] Update scripts.php Remove the extra ) to fix the syntax. --- app/scripts/resources/classes/scripts.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/scripts/resources/classes/scripts.php b/app/scripts/resources/classes/scripts.php index 9b63883759..39c8dc6afb 100644 --- a/app/scripts/resources/classes/scripts.php +++ b/app/scripts/resources/classes/scripts.php @@ -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(); */ -?> \ No newline at end of file +?>