When a file for a download is missing an error message comes up with that language string: COM_JDOWNLOADS_FILE_NOT_FOUND_MSG
I guess my language files for the front end are missing. Where do I check that and where do I need to place the missing files?
Thanks
Carin
Good find. :) It is a simple mis type Bug :(
In /components/com_jpublic_html/j3-2/components/com_jdownloads/controllers/downloads.php
line 686 is
$msg = JText::_('COM_JDOWNLOADS_FILE_NOT_FOUND_MSG').': '.basename($filename);
it should be (_MSG) removed.
$msg = JText::_('COM_JDOWNLOADS_FILE_NOT_FOUND').': '.basename($filename);
I will move this topic to 'bugs'
Colin
Is fixed in the next update. Shall be published this evening.