diff options
| author | stupidon <bhupendra.siyag@gmail.com> | 2016-03-22 17:14:40 +0100 |
|---|---|---|
| committer | stupidon <bhupendra.siyag@gmail.com> | 2016-03-22 17:14:40 +0100 |
| commit | c37b891909f10172aa2e355868395c18b6d3efaa (patch) | |
| tree | 91ee6f8692fea161e327cfaf0af77a0983ac194b | |
| parent | 7a61955d8566ec14fbabcfa5b3eab13d3631352f (diff) | |
syntax correction
| -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 4d94705..df43c7c 100644 --- a/server/core/Compute.php +++ b/server/core/Compute.php @@ -458,7 +458,7 @@ class compute $imageId = $this->app->getPostParam("imageId"); $newName = $this->app->getPostParam("newName"); $adminPass = $this->app->getPostParam("adminPass"); - if(!isset($serverId)|| !isset($imageId) || isset($newName) || isset($adminPass)) ){ + if(!isset($serverId)|| !isset($imageId) || isset($newName) || isset($adminPass)){ $this->app->setOutput("Error", "You'll have to provide server ID and the new image, name and admin password!"); return; } |
