Forums / Setup & design / Remove Spamfilter ?
laurent le cadet
Monday 27 September 2004 7:01:53 am
Hello,
I want to remove the spam filter in ezauthor.tpl.
I tryied this :
{section name=Author loop=$attribute.content.author_list sequence=array(bglight,bgdark)} {$Author:item.name|wash(xhtml)} : <a href='mailto:<{$Author:item.email|wash(email)}>'>{$Author:item.email|wash(email)}</a>{delimiter},{/delimiter} {/section}
It's correctly print on screen, but the template render me this address in outlook:laurent<span class="spamfilter">SPAMFILTER</span>@lestudiot.com <laurent<span class="spamfilter">SPAMFILTER</span>@lestudiot.com>
:((
Any idea ?
Thanks .
Laurent.
Alex Jones
Monday 27 September 2004 9:13:34 am
A couple of thoughts... 1. Remove < and > from your href, they should not be there2. Try removing <i>|wash(email}</i>
{section name=Author loop=$attribute.content.author_list sequence=array(bglight,bgdark)} {$Author:item.name|wash(xhtml)} : <a href='mailto:{$Author:item.email}'>{$Author:item.email}</a>{delimiter},{/delimiter} {/section}
Alex [ bald_technologist on the IRC channel (irc.freenode.net): #eZpublish ] <i>When in doubt, clear the cache.</i>
Ekkehard Dörre
Monday 27 September 2004 3:43:20 pm
Try this:
http://ez.no/community/bug_reports/pdf_version_of_demo_news_shows_spamprevent_tags
Greetings, ekke
http://www.coolscreen.de - Over 40 years of certified eZ Publish know-how: http://www.cjw-network.com CJW Newsletter: http://projects.ez.no/cjw_newsletter - http://cjw-network.com/en/ez-publ...w-newsletter-multi-channel-marketing
Monday 27 September 2004 11:56:57 pm
Thanks Alex + Ekke,
Sure the < + > wasn't really nice in an URL...
I tryed Alex solution which works.