X-Git-Url: http://git.datanom.net/qtadmin.git/blobdiff_plain/89d8e7c24b29ada2355a176d0b9a24997292b2d7..431ebe4e6d51d45a46dd47a07448e9c5a79a7cb2:/rest_client.php diff --git a/rest_client.php b/rest_client.php index 7182494..1857a12 100644 --- a/rest_client.php +++ b/rest_client.php @@ -32,14 +32,13 @@ 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['token'] = $ticket->data->CSRFPreventionToken; + $_SESSION['CSRFPreventionToken'] = 'CSRFPreventionToken='.$ticket->data->CSRFPreventionToken; $_SESSION['cookies'] = $response['cookies']; } } else { - $response = $util->RESTCall($CFG->wblistadm_url.'/show', $data, $cookiesIn = $_SESSION['cookies']); + $response = $util->RESTCall($CFG->wblistadm_url.'/show', $_SESSION['CSRFPreventionToken'], $cookiesIn = $_SESSION['cookies']); if ($response['http_code'] >= 200 && $response['http_code'] <= 204) { $data = json_decode($response['content']); - $_SESSION['CSRFPreventionToken'] = 'CSRFPreventionToken='.$ticket->data->CSRFPreventionToken; $_SESSION['cookies'] = $response['cookies']; } }