diff options
| author | EoleDev <EoleDev@outlook.fr> | 2016-03-23 15:13:42 +0100 |
|---|---|---|
| committer | EoleDev <EoleDev@outlook.fr> | 2016-03-23 15:13:42 +0100 |
| commit | 0dc17aa9efb987dcdf6f864f4110450bcc0c9003 (patch) | |
| tree | dd827e58987ccfafc6a923c2110b95403f80f1bf /server/core/App.php | |
| parent | d3fc2ab36ced70c8eb20e7f85f900425b7781667 (diff) | |
Correction Erreur
Diffstat (limited to 'server/core/App.php')
| -rwxr-xr-x | server/core/App.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/core/App.php b/server/core/App.php index e3c9c22..6970e5f 100755 --- a/server/core/App.php +++ b/server/core/App.php @@ -22,7 +22,7 @@ class App{ $this->tokenPost = NULL;
$this->tokenClass = new genTokenOptions($args);
- $this->openstack = new OpenStack\OpenStack([]);
+ $this->openstack = new OpenStack\OpenStack(['authUrl' => $args["authUrl"]]);
$this->pluginsApi = plugin_api::getInstance();
$this->errorClass = new errorManagement($this);
$this->output = array();
@@ -38,7 +38,7 @@ class App{ }
public function checkToken(){
- $this->tokenClass->checkToken();
+ return $this->tokenClass->checkToken();
}
public function getLibClass($service){
|
