diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2012-11-30 16:27:11 +0100 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2012-11-30 16:27:11 +0100 |
commit | 92df70b6e5c4cba373cf0b24af02c328881cdd2d (patch) | |
tree | caa914884d58cb9118330c3823c4525c7dfd65cf /apps/files_external/ajax/addMountPoint.php | |
parent | df21ebeaf73bed10e972af6ef09f2bfb0df68e1c (diff) | |
download | nextcloud-server-92df70b6e5c4cba373cf0b24af02c328881cdd2d.tar.gz nextcloud-server-92df70b6e5c4cba373cf0b24af02c328881cdd2d.zip |
fix checkstyle for files_external app, add whitespace for readability
Diffstat (limited to 'apps/files_external/ajax/addMountPoint.php')
-rw-r--r-- | apps/files_external/ajax/addMountPoint.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/apps/files_external/ajax/addMountPoint.php b/apps/files_external/ajax/addMountPoint.php index e08f805942f..4cd8871b310 100644 --- a/apps/files_external/ajax/addMountPoint.php +++ b/apps/files_external/ajax/addMountPoint.php @@ -10,4 +10,9 @@ if ($_POST['isPersonal'] == 'true') { OCP\JSON::checkAdminUser(); $isPersonal = false; } -OC_Mount_Config::addMountPoint($_POST['mountPoint'], $_POST['class'], $_POST['classOptions'], $_POST['mountType'], $_POST['applicable'], $isPersonal); +OC_Mount_Config::addMountPoint($_POST['mountPoint'], + $_POST['class'], + $_POST['classOptions'], + $_POST['mountType'], + $_POST['applicable'], + $isPersonal);
\ No newline at end of file |