Skip to content

Commit

Permalink
πŸ› β€” Protect email addresses in archive search, fix sympa-community#1312
Browse files Browse the repository at this point in the history
  • Loading branch information
ldidry committed Jan 6, 2022
1 parent ecda973 commit 8133c50
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions default/web_tt2/arcsearch.tt2
Original file line number Diff line number Diff line change
Expand Up @@ -68,15 +68,15 @@
</dt>
<dd>
[%~ FOREACH r = u.rich.from ~%]
[% IF r.format == 'b' %]<b>[% r.text %]</b>
[% IF r.format == 'b' %]<b>[%|obfuscate(conf.web_archive_spam_protection)%][% r.text %][%END%]</b>
[%~ ELSIF r.format == 'br' %]<br />
[%~ ELSE%][% r.text %][%END ~%]
[%~ ELSE%][%|obfuscate(conf.web_archive_spam_protection)%][% r.text %][%END%][%END ~%]
[%END ~%]
<pre>
[%~ FOREACH r = u.rich.body_string ~%]
[% IF r.format == 'b' %]<b>[% r.text %]</b>
[% IF r.format == 'b' %]<b>[%|obfuscate(conf.web_archive_spam_protection)%][% r.text %][%END%]</b>
[%~ ELSIF r.format == 'br' %]<br />
[%~ ELSE%][% r.text %][%END ~%]
[%~ ELSE%][%|obfuscate(conf.web_archive_spam_protection)%][% r.text %][%END%][%END ~%]
[%END ~%]
</pre>
</dd>
Expand Down

0 comments on commit 8133c50

Please sign in to comment.