- Patch #44011 by Souvent22 et al: critical bugfix: make private downloads work again.

4.7.x
Dries Buytaert 2006-01-18 19:18:30 +00:00
parent 2220c03633
commit ffc7c5c3c6
1 changed files with 4 additions and 4 deletions

View File

@ -488,12 +488,12 @@ function file_download() {
$list = module_list();
foreach ($list as $module) {
$headers = module_invoke($module, 'file_download', $file);
if (empty($headers)) {
drupal_access_denied();
}
elseif (is_array($headers)) {
if (is_array($headers)) {
file_transfer($file, $headers);
}
elseif ($headers == -1) {
drupal_access_denied();
}
}
}
drupal_not_found();