Add missing ')'

This commit is contained in:
Michael Gapczynski 2012-06-21 12:25:45 -04:00
parent a5938e4e37
commit bf6abdde2d
1 changed files with 1 additions and 1 deletions

View File

@ -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 {