Skip to content
This repository has been archived by the owner on Oct 21, 2020. It is now read-only.

Commit

Permalink
fix setting port issue
Browse files Browse the repository at this point in the history
  • Loading branch information
nroduit committed Oct 28, 2015
1 parent c3a656b commit 03ea5cf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions usr/share/openmediavault/engined/rpc/dcm4chee.inc
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ class OMVRpcServiceDcm4chee extends OMVRpcServiceAbstract

// Modify result data
$object['enable'] = boolval($object['enable']);
$object['port'] = intval($object['port']);
$object['port'] = 8080;
//$object['port'] = intval($object['port']);
// $object['showtab'] = boolval($object['showtab']);

return $object;
Expand All @@ -99,8 +100,7 @@ class OMVRpcServiceDcm4chee extends OMVRpcServiceAbstract
$this->validateMethodParams($params, '{
"type": "object",
"properties": {
"enable": { "type" : "boolean" },
"enable": { "type" : "boolean" }
}
}');

Expand Down

0 comments on commit 03ea5cf

Please sign in to comment.