Merge pull request #14439 from owncloud/fix-ajax-files-external

Fix Ajax type casting for files_external
This commit is contained in:
Lukas Reschke 2015-02-23 16:29:45 +01:00
commit f54cd14c7e
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ if ($_POST['isPersonal'] == 'true') {
$mountPoint = (string)$_POST['mountPoint'];
$oldMountPoint = (string)$_POST['oldMountPoint'];
$class = (string)$_POST['class'];
$options = (string)$_POST['classOptions'];
$options = (array)$_POST['classOptions'];
$type = (string)$_POST['mountType'];
$applicable = (string)$_POST['applicable'];