Online 52 in the default.tpl file just change the href to
{$smarty.const.PATH_RELATIVE}{$files[$fid]->directory}{$files[$fid]->filename}
so it reads
<a
href="{$smarty.const.PATH_RELATIVE}{$files[$fid]->directory}{$files[$fid]->filename}">{$resource->name}</a>
This then links in the one click download
RB
Logged In: YES
user_id=883732
code was missing a slash in the file structure. Correct
href: <a
href="{$smarty.const.PATH_RELATIVE}{$files[$fid]->directory}/{$files[$fid]->filename}">{$resource->name}</a>
*** Also note that this function will disable the ability to
update the file with new versions.