| Versionen | |
|---|---|
| drupal6 | user_file_download( |
| drupal7 | user_file_download($filepath) |
Implementation of hook_file_download().
Ensure that user pictures (avatars) are always downloadable.
modules/
<?php
function user_file_download($file) {
if (strpos($file, variable_get('user_picture_path', 'pictures') . '/picture-') === 0) {
$info = image_get_info(file_create_path($file));
return array('Content-type: ' . $info['mime_type']);
}
}
?>
Kommentare
Kommentar hinzufügen