Merge pull request #14439 from owncloud/fix-ajax-files-external
Fix Ajax type casting for files_external
This commit is contained in:
commit
f54cd14c7e
|
@ -35,7 +35,7 @@ if ($_POST['isPersonal'] == 'true') {
|
||||||
$mountPoint = (string)$_POST['mountPoint'];
|
$mountPoint = (string)$_POST['mountPoint'];
|
||||||
$oldMountPoint = (string)$_POST['oldMountPoint'];
|
$oldMountPoint = (string)$_POST['oldMountPoint'];
|
||||||
$class = (string)$_POST['class'];
|
$class = (string)$_POST['class'];
|
||||||
$options = (string)$_POST['classOptions'];
|
$options = (array)$_POST['classOptions'];
|
||||||
$type = (string)$_POST['mountType'];
|
$type = (string)$_POST['mountType'];
|
||||||
$applicable = (string)$_POST['applicable'];
|
$applicable = (string)$_POST['applicable'];
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue