From 4baeebdf4590b79da27e340217206d74e8dfeb3f Mon Sep 17 00:00:00 2001 From: Steve Sutton Date: Wed, 19 Dec 2018 10:33:03 -0500 Subject: [PATCH] update proxy for htttps --- proxy.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/proxy.php b/proxy.php index 84e4ff8..249d13e 100644 --- a/proxy.php +++ b/proxy.php @@ -5,9 +5,9 @@ // set url if ($option == 'top-bar') { - curl_setopt($ch, CURLOPT_URL, "http://www.gaylordgolfmecca.com/nav.php"); + curl_setopt($ch, CURLOPT_URL, "https://www.gaylordgolfmecca.com/nav.php"); } else if ($option == 'off-canvas') { - curl_setopt($ch, CURLOPT_URL, "http://www.gaylordgolfmecca.com/off-canvas-nav.php"); + curl_setopt($ch, CURLOPT_URL, "https://www.gaylordgolfmecca.com/off-canvas-nav.php"); } //return the transfer as a string @@ -17,6 +17,6 @@ $output = curl_exec($ch); // close curl resource to free up system resources - curl_close($ch); + curl_close($ch); echo $output; -?> \ No newline at end of file +?> -- 2.17.1