diff options
author | Thomas Mueller <thomas.mueller@tmit.eu> | 2012-08-29 00:50:12 +0200 |
---|---|---|
committer | Thomas Mueller <thomas.mueller@tmit.eu> | 2012-08-29 00:50:12 +0200 |
commit | fe49cbafc77f8a197dfe5c947360d9e52396d081 (patch) | |
tree | 4a2a1c027c809f0ae29d638231127a1003344959 /apps/files/ajax/newfolder.php | |
parent | f301bfd8c9f6b9beda907888708b0d465dc87a83 (diff) | |
download | nextcloud-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.php | 2 |
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(); } |