diff options
author | imoore76 <imoore76@users.noreply.github.com> | 2015-09-09 08:55:24 -0400 |
---|---|---|
committer | imoore76 <imoore76@users.noreply.github.com> | 2015-09-09 08:55:24 -0400 |
commit | 148f49edf5e2c2877826e383f531a92de99e96e4 (patch) | |
tree | 89365f4399388ec19fe40f6169f89d137937ac75 /endpoints | |
parent | a1172caa70fc60663bc0db62b643655497de3354 (diff) | |
parent | 06514eded5d1991ce67c5aa2b43428c918fe46d6 (diff) | |
download | phpvirtualbox-148f49edf5e2c2877826e383f531a92de99e96e4.zip phpvirtualbox-148f49edf5e2c2877826e383f531a92de99e96e4.tar.gz phpvirtualbox-148f49edf5e2c2877826e383f531a92de99e96e4.tar.bz2 |
Merge pull request #6 from imoore76/develop
5.0-3
Diffstat (limited to 'endpoints')
-rw-r--r-- | endpoints/jqueryFileTree.php | 2 | ||||
-rw-r--r-- | endpoints/lib/config.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/endpoints/jqueryFileTree.php b/endpoints/jqueryFileTree.php index e9e6871..016a29d 100644 --- a/endpoints/jqueryFileTree.php +++ b/endpoints/jqueryFileTree.php @@ -207,7 +207,7 @@ if($request['dir'] == DSEP && count($allowed_folders)) { }
-header('Content-type', 'application/json');
+header('Content-type: application/json');
echo(json_encode($returnData));
diff --git a/endpoints/lib/config.php b/endpoints/lib/config.php index ebe34c2..bf90398 100644 --- a/endpoints/lib/config.php +++ b/endpoints/lib/config.php @@ -14,7 +14,7 @@ /*
* This version of phpVirtualBox
*/
-define('PHPVBOX_VER', '5.0-2');
+define('PHPVBOX_VER', '5.0-3');
class phpVBoxConfigClass {
|