diff options
author | Tom077 <thomas.pochetat@wanadoo.fr> | 2018-05-11 16:28:36 +0200 |
---|---|---|
committer | Tom077 <thomas.pochetat@wanadoo.fr> | 2018-05-11 16:28:36 +0200 |
commit | 9ccd3bfec0340b714d902e2f14e3ac1c306baae8 (patch) | |
tree | 2a08d9ba96ac2eb2e38f5a6338d83bcb0ead396c /endpoints/lib | |
parent | e706f2334483a6a2b091cb29baa8872f0d27bbb8 (diff) | |
download | phpvirtualbox-9ccd3bfec0340b714d902e2f14e3ac1c306baae8.zip phpvirtualbox-9ccd3bfec0340b714d902e2f14e3ac1c306baae8.tar.gz phpvirtualbox-9ccd3bfec0340b714d902e2f14e3ac1c306baae8.tar.bz2 |
Fix Import/Export doesn't work #116
Diffstat (limited to 'endpoints/lib')
-rw-r--r-- | endpoints/lib/vboxServiceWrappers.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/endpoints/lib/vboxServiceWrappers.php b/endpoints/lib/vboxServiceWrappers.php index d1ff951..1ba3053 100644 --- a/endpoints/lib/vboxServiceWrappers.php +++ b/endpoints/lib/vboxServiceWrappers.php @@ -1499,7 +1499,7 @@ class IVirtualSystemDescription extends VBox_ManagedObject { $request = new stdClass(); $request->_this = $this->handle; - $request->enabled = (bool)$arg_enabled; + $request->enabled = $arg_enabled; $request->VBoxValues = $arg_VBoxValues; $request->extraConfigValues = $arg_extraConfigValues; $response = $this->connection->__soapCall('IVirtualSystemDescription_setFinalValues', array((array)$request)); |