sf_gabe
One item I noticed though is that when commenters add their email address (or it is required), that email address is unmasked and asking for a truckload of spam. If it is outside the article content ("Below Article Box" in the settings) the mailto: link works but is unmasked for spammers to have fun with.
If it is inside the article content ("Inside Article Box" in the settings) and you have the default joomla email masking turned on (which hopefully you do) the email link doesn't work and you get the page echo-ing part of the script tag.
I have figured out a hack around this for the time being. If you want your commenters email address masked (ad you should) modify com_yvcomments/views/tmpl/default.php on line 240. Replace:
echo '';
With:
echo $link;
You should also take out the closing "a" tag from the echo on line 251
This will display the commenters email above the name, while still masking it from spammers with the default joomla bot.
You can also modify line 2151 of helpers to read $link = $link; if you want to get rid of the "mailto:" part, which just makes it look a bit better.
Pardon the hack-y code, but I'm hoping this is just a quick fix until Yuri puts out the next version.
Thanks for the review, sf_gabe.
The hint you are describing is about the bug of Joomla! core, the "Email Cloak" plugin. See e.g. "Upgrade to 1.5.9 Emailcloak not working" here: http://forum.joomla.org/viewtopic.php?p=1558499#p1558499




