X-Git-Url: http://git.datanom.net/qtadmin.git/blobdiff_plain/0da9e6e7d82b2cb758626d1ee4eb6b3297d667b1..ae9516bf2903b82920fb96e424cd796a878535ea:/lib/utils.inc.php
diff --git a/lib/utils.inc.php b/lib/utils.inc.php
index de2cbfc..fdeab70 100644
--- a/lib/utils.inc.php
+++ b/lib/utils.inc.php
@@ -22,7 +22,24 @@ class Utils {
__TITLE__
-';
+
+
+
';
private $footer = '
';
@@ -174,6 +191,8 @@ class Utils {
}
private function getRestTicket($username, $password) {
+ global $CFG;
+
$result = false;
$url = $CFG->wblistadm_url . '/ticket';
@@ -190,9 +209,11 @@ class Utils {
}
public function makeRestCall($method, $data = null) {
+ global $CFG;
+
$result;
- $url = $CFG->wblistadm_url . "/$method";
+ $url = $CFG->wblistadm_url . "$method";
$token = $this->getCSRFPreventionToken($_SESSION['ticket']);
$response = $this->RESTCall($url, $data, $_SESSION['cookies'], $token);