jDownloads Support Forum

Older Versions => jDownloads 3.2 (Support ended) => Bugs => Topic started by: carin on 17.06.2014 21:41:31

Title: missing lang string COM_JDOWNLOADS_FILE_NOT_FOUND_MSG - [Fixed in 3.2.7]
Post by: carin on 17.06.2014 21:41:31
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
Title: Re: missing lang string COM_JDOWNLOADS_FILE_NOT_FOUND_MSG
Post by: ColinM on 18.06.2014 13:22:39
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
Title: Re: missing lang string COM_JDOWNLOADS_FILE_NOT_FOUND_MSG
Post by: Arno on 19.06.2014 13:50:25
Is fixed in the next update. Shall be published this evening.