]> git.datanom.net - qtadmin.git/blobdiff - rest_client.php
add more debug info
[qtadmin.git] / rest_client.php
index 15614c5ca6c1d7ebcfe1853346ccc17fb32ddd97..c0d81b801038eebd81fe2ea4d417d4046394c4b5 100644 (file)
@@ -32,14 +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'] = array('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', null,
                                 $cookiesIn = $_SESSION['cookies'], $_SESSION['CSRFPreventionToken']);
         $data = json_decode($response['content']);
-        $_SESSION['cookies'] = $response['cookies'];
+        //$_SESSION['cookies'] = $response['cookies'];
 }
 
 ?>
This page took 0.028939 seconds and 5 git commands to generate.