12
Maybe I'm not understanding this correctly, but I did the fix described here and indeed it got rid of the extra period at the end of email addresses. But even though there is a fancy javascript to make a spider safe mailto: link, the HTML version is still included right behind it--won't that still be spidered?
Here's an example, using XOOPS 2.2.3 and the content module, I put in an email address without making it a link. when I view the source of the page though I see this:
le="color: #000000"><?php <script type="text/javascript">var id='user';var host1='domain.com';var host2='';document.write('<a href="mailto:'+id+'@'+host1+''+host2+'">'+id+'@'+host1+''+host2+'</a>');</script><a href="mailto:user@domain.com">user@domain.com</a>
What I see is there is STILL:
le="color: #000000"><?php <a href="mailto:user@domain.com">user@domain.com</a>
showing up after the javascript. Is this safe?