X-Git-Url: http://git.datanom.net/qtadmin.git/blobdiff_plain/928e37f7083dd3320588a26d5dcc6b2d4e4de957..fa2344f453c982a7a9b06285a4581788659c3f4f:/rest_client.php?ds=sidebyside diff --git a/rest_client.php b/rest_client.php index ed24278..15614c5 100644 --- a/rest_client.php +++ b/rest_client.php @@ -32,15 +32,14 @@ if (! isset($_SESSION['ticket'])) { $response = $util->RESTCall($CFG->wblistadm_url.'/ticket', $data, $cookiesIn = ''); if ($response['http_code'] >= 200 && $response['http_code'] <= 204) { $_SESSION['ticket'] = json_decode($response['content']); - $_SESSION['CSRFPreventionToken'] = 'CSRFPreventionToken='.$_SESSION['ticket']->data->CSRFPreventionToken; + $_SESSION['CSRFPreventionToken'] = array('CSRFPreventionToken', $_SESSION['ticket']->data->CSRFPreventionToken); $_SESSION['cookies'] = $response['cookies']; } } else { - $response = $util->RESTCall($CFG->wblistadm_url.'/show', $_SESSION['CSRFPreventionToken'], $cookiesIn = $_SESSION['cookies']); - if ($response['http_code'] >= 200 && $response['http_code'] <= 204) { + $response = $util->RESTCall($CFG->wblistadm_url.'/show', null, + $cookiesIn = $_SESSION['cookies'], $_SESSION['CSRFPreventionToken']); $data = json_decode($response['content']); $_SESSION['cookies'] = $response['cookies']; - } } ?> @@ -58,7 +57,8 @@ if (! isset($_SESSION['ticket'])) {