hi,
one little but ugly Display bug - a blank / space TAG too much.
Will only show with the email encode function.
space between icon & text - (pic + 'space' + emailadress )
----------------------------------
Search "$link_author = $pic_author.' '.$mail_encode;" (3 hits in 3 files)
\com_jdownloads\site\views\category\tmpl\default.php (1 hit)
Line 1333: $link_author = $pic_author.' '.$mail_encode;
\com_jdownloads\site\views\downloads\tmpl\default.php (1 hit)
Line 999: $link_author = $pic_author.' '.$mail_encode;
\com_jdownloads\site\views\mydownloads\tmpl\default.php (1 hit)
Line 978: $link_author = $pic_author.' '.$mail_encode;
wrong:
---------
$link_author = $pic_author.' '.$mail_encode;
right:
--------------
$link_author = $pic_author.''.$mail_encode;
and ...
----------------------------------
Search "$link_author = $jdpic_author.' '.$mail_encode;" (1 hit in 1 file)
\com_jdownloads\plugins\plg_content_jdownloads\jdownloads.php (1 hit)
Line 988: $link_author = $jdpic_author.' '.$mail_encode;
wrong:
---------
$link_author = $jdpic_author.' '.$mail_encode;
right:
--------------
$link_author = $jdpic_author.''.$mail_encode;
BTW: The Forum Link (http://jdownloads.com/index.php?option=com_wrapper&view=wrapper&Itemid=150) from the website is not working (No Iframe allowed).
Hi Nyx,
thanks for the posted small bugs.
Is fixed in 3.2.28. ;)
I have also corrected the menu link to the forum...