- Patch #44011 by Souvent22 et al: critical bugfix: make private downloads work again.
parent
2220c03633
commit
ffc7c5c3c6
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue