Skip to content
Snippets Groups Projects
Commit f54cd14c authored by Lukas Reschke's avatar Lukas Reschke
Browse files

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

Fix Ajax type casting for files_external
parents 4290e199 9d36959d
No related branches found
No related tags found
No related merge requests found
......@@ -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'];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment