From bf6abdde2df060af7657f5328fdc638a561d21aa Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Thu, 21 Jun 2012 12:25:45 -0400 Subject: [PATCH] Add missing ')' --- apps/files_sharing/get.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {