diff options
| author | stupidon <bhupendra.siyag@gmail.com> | 2016-03-01 16:53:23 +0100 |
|---|---|---|
| committer | stupidon <bhupendra.siyag@gmail.com> | 2016-03-01 16:53:23 +0100 |
| commit | f551dffd8a960d4a322ba2b99fd98a02dd98b402 (patch) | |
| tree | 4cff616a9e2214c21b28fced59f32a3961ae1abd | |
| parent | efbd08263cf2ab938ce53076a6e7a9312846bb17 (diff) | |
compute listServers fix
| -rw-r--r-- | server/core/Compute.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/core/Compute.php b/server/core/Compute.php index 1aad8a9..131d02c 100644 --- a/server/core/Compute.php +++ b/server/core/Compute.php @@ -35,7 +35,7 @@ class compute */ public function listServers() { - $serverList = $this->libClass->listServers(); + $serverList = $this->libClass->listServers(true); $servers = Array(); foreach($serverList as $server){ $servers[$server->id] = Array(); |
