aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/ajax/newfolder.php
diff options
context:
space:
mode:
authorThomas Mueller <thomas.mueller@tmit.eu>2012-08-29 00:50:12 +0200
committerThomas Mueller <thomas.mueller@tmit.eu>2012-08-29 00:50:12 +0200
commitfe49cbafc77f8a197dfe5c947360d9e52396d081 (patch)
tree4a2a1c027c809f0ae29d638231127a1003344959 /apps/files/ajax/newfolder.php
parentf301bfd8c9f6b9beda907888708b0d465dc87a83 (diff)
downloadnextcloud-server-fe49cbafc77f8a197dfe5c947360d9e52396d081.tar.gz
nextcloud-server-fe49cbafc77f8a197dfe5c947360d9e52396d081.zip
apply coding style
Diffstat (limited to 'apps/files/ajax/newfolder.php')
-rw-r--r--apps/files/ajax/newfolder.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/ajax/newfolder.php b/apps/files/ajax/newfolder.php
index ae92bcf09bb..34c2d0ca145 100644
--- a/apps/files/ajax/newfolder.php
+++ b/apps/files/ajax/newfolder.php
@@ -14,7 +14,7 @@ if(trim($foldername) == '') {
OCP\JSON::error(array("data" => array( "message" => "Empty Foldername" )));
exit();
}
-if(strpos($foldername,'/')!==false){
+if(strpos($foldername, '/')!==false) {
OCP\JSON::error(array("data" => array( "message" => "Invalid Foldername" )));
exit();
}