diff options
author | Ian Moore <imoore76@yahoo.com> | 2016-01-08 13:10:56 -0500 |
---|---|---|
committer | Ian Moore <imoore76@yahoo.com> | 2016-01-08 13:10:56 -0500 |
commit | e5394ddab08b57e2d0b550a831f2ec7b82e86568 (patch) | |
tree | 16789a171282daa19569ad92898d7eb056bd2731 /endpoints/api.php | |
parent | fc220fd7ca316a3256e00be193e7bafbe3e44744 (diff) | |
download | phpvirtualbox-e5394ddab08b57e2d0b550a831f2ec7b82e86568.zip phpvirtualbox-e5394ddab08b57e2d0b550a831f2ec7b82e86568.tar.gz phpvirtualbox-e5394ddab08b57e2d0b550a831f2ec7b82e86568.tar.bz2 |
PHP7 support
Diffstat (limited to 'endpoints/api.php')
-rw-r--r-- | endpoints/api.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/endpoints/api.php b/endpoints/api.php index 8abd6e9..b6d768e 100644 --- a/endpoints/api.php +++ b/endpoints/api.php @@ -313,7 +313,7 @@ try { /*
* Call to vboxconnector
*/
- $vbox->$request['fn']($request['params'],array(&$response));
+ $vbox->{$request['fn']}($request['params'],array(&$response));
/*
|