From 407c8545d1dcc14b35e96c305ad3736c2483f80b Mon Sep 17 00:00:00 2001 From: Garrett Date: Thu, 26 Nov 2020 05:49:07 +0000 Subject: [PATCH] 0.3.11 --- assets/pages/jquery.templates.js | 2 +- backend/process_template-import.php | 2 +- backend/retrieve_template-catalog.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/assets/pages/jquery.templates.js b/assets/pages/jquery.templates.js index cf5c8a4..194edf7 100755 --- a/assets/pages/jquery.templates.js +++ b/assets/pages/jquery.templates.js @@ -1579,7 +1579,7 @@ function initializeTemplateCatalog(){ data = JSON.stringify(data); //Retrieve object details - $.post("https://patchcablemgr.com/public/template-catalog-details-0-3-11.php", {data:data}, function(response){ + $.post("https://patchcablemgr.com/public/template-catalog-details.php", {data:data}, function(response){ var alertMsg = ''; var responseJSON = JSON.parse(response); if ($(responseJSON.error).size() > 0){ diff --git a/backend/process_template-import.php b/backend/process_template-import.php index 183afc2..3f9b25c 100755 --- a/backend/process_template-import.php +++ b/backend/process_template-import.php @@ -22,7 +22,7 @@ if($_SERVER['REQUEST_METHOD'] == 'POST'){ // POST Request $POSTData = array('data' => $dataJSON); - $ch = curl_init('https://patchcablemgr.com/public/template-import-0-3-11.php'); + $ch = curl_init('https://patchcablemgr.com/public/template-import.php?version='.PCM_VERSION); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, $POSTData); diff --git a/backend/retrieve_template-catalog.php b/backend/retrieve_template-catalog.php index 4553992..ceb5f64 100755 --- a/backend/retrieve_template-catalog.php +++ b/backend/retrieve_template-catalog.php @@ -3,7 +3,7 @@ define('QUADODO_IN_SYSTEM', true); require_once '../includes/header.php'; $qls->Security->check_auth_page('operator.php'); -$ch = curl_init('https://patchcablemgr.com/public/template-catalog-data-0-3-11.php'); +$ch = curl_init('https://patchcablemgr.com/public/template-catalog-data.php?version='.PCM_VERSION); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, "/etc/ssl/certs/");