diff options
author | Michael Gapczynski <GapczynskiM@gmail.com> | 2012-06-21 12:25:45 -0400 |
---|---|---|
committer | Michael Gapczynski <GapczynskiM@gmail.com> | 2012-06-21 12:26:06 -0400 |
commit | bf6abdde2df060af7657f5328fdc638a561d21aa (patch) | |
tree | 6346853aa51b236a627f0e9799ae3e1875b5f686 | |
parent | a5938e4e3766bb7502a3493661ed3bac662f5182 (diff) | |
download | nextcloud-server-bf6abdde2df060af7657f5328fdc638a561d21aa.tar.gz nextcloud-server-bf6abdde2df060af7657f5328fdc638a561d21aa.zip |
Add missing ')'
-rw-r--r-- | apps/files_sharing/get.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/get.php b/apps/files_sharing/get.php index 1ab8c6a257f..40a90a1530c 100644 --- a/apps/files_sharing/get.php +++ b/apps/files_sharing/get.php @@ -77,7 +77,7 @@ if (isset($_GET['token']) && $source = OC_Share::getSource($_GET['token'])) { header("Content-Length: " . OC_Filesystem::filesize($source)); //download the file @ob_clean(); - OCP\Util::emitHook('OC_Share', 'public-download', array('source'=>$source, 'token'=>$token); + OCP\Util::emitHook('OC_Share', 'public-download', array('source'=>$source, 'token'=>$token)); OC_Filesystem::readfile($source); } } else { |