user_file_download
- Versions
- 4.6 – 6
user_file_download($file)- 7
user_file_download($uri)
Implementation of hook_file_download().
Ensure that user pictures (avatars) are always downloadable.
Code
modules/user/user.module, line 553
<?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']);
}
}
?>Login or register to post comments 