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/move.php | |
parent | f301bfd8c9f6b9beda907888708b0d465dc87a83 (diff) | |
download | nextcloud-server-fe49cbafc77f8a197dfe5c947360d9e52396d081.tar.gz nextcloud-server-fe49cbafc77f8a197dfe5c947360d9e52396d081.zip |
apply coding style
Diffstat (limited to 'apps/files/ajax/move.php')
-rw-r--r-- | apps/files/ajax/move.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/ajax/move.php b/apps/files/ajax/move.php index 3d4003a8edc..8b3149ef14e 100644 --- a/apps/files/ajax/move.php +++ b/apps/files/ajax/move.php @@ -12,8 +12,8 @@ $file = stripslashes($_GET["file"]); $target = stripslashes($_GET["target"]); -if(OC_Files::move($dir,$file,$target,$file)){ +if(OC_Files::move($dir, $file, $target, $file)) { OCP\JSON::success(array("data" => array( "dir" => $dir, "files" => $file ))); -}else{ +} else { OCP\JSON::error(array("data" => array( "message" => "Could not move $file" ))); } |