diff options
author | Vincent Petry <pvince81@owncloud.com> | 2013-10-31 15:12:26 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2013-10-31 15:12:26 +0100 |
commit | 35dd568f8fd627a45d3bb090ed7e955afadec9e3 (patch) | |
tree | c641b2e8368321a14768810c35b97fa26ca0a813 /apps | |
parent | efbd79198b3fed8480566c81397f530dea7e7b5c (diff) | |
download | nextcloud-server-35dd568f8fd627a45d3bb090ed7e955afadec9e3.tar.gz nextcloud-server-35dd568f8fd627a45d3bb090ed7e955afadec9e3.zip |
Added missing comma to make the next diff cleaner
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/ajax/newfile.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/ajax/newfile.php b/apps/files/ajax/newfile.php index 9d9a81ae3dc..c327d2b9f94 100644 --- a/apps/files/ajax/newfile.php +++ b/apps/files/ajax/newfile.php @@ -119,7 +119,7 @@ if($source) { 'mime' => $mime, 'size' => $size, 'content' => $content, - 'etag' => $meta['etag'] + 'etag' => $meta['etag'], ))); exit(); } |