function filebrowser_private_download_url in Filebrowser 6.2
Same name in this branch
- 6.2 filebrowser.api.php \filebrowser_private_download_url()
- 6.2 includes/downloads.inc \filebrowser_private_download_url()
2 string references to 'filebrowser_private_download_url'
- filebrowser_filebrowser_download_manager_info in ./
filebrowser.module - hook_filebrowser_download_manager_info implementation.
- hook_filebrowser_download_manager_info in ./
filebrowser.api.php - hook_filebrowser_download_manager_info implementation.
File
- includes/
downloads.inc, line 137
Code
function filebrowser_private_download_url($node, $record) {
// added language '' issue 2312731
return url('filebrowser/download/' . $record['fid'], array(
'absolute' => TRUE,
'language' => '',
));
}