From 193c5ac6be8e883c57e4caf3c87b181db0351be0 Mon Sep 17 00:00:00 2001 From: "myk%mozilla.org" <> Date: Fri, 1 Aug 2003 10:57:19 +0000 Subject: Partial fix for bug 120030: adds template filter for obscuring email addresses. Patch by Stephen Lee . r=myk,a=myk --- Bugzilla/Template.pm | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'Bugzilla/Template.pm') diff --git a/Bugzilla/Template.pm b/Bugzilla/Template.pm index 6c3e2161a..d5cb1afd7 100644 --- a/Bugzilla/Template.pm +++ b/Bugzilla/Template.pm @@ -244,6 +244,14 @@ sub create { # Format a time for display (more info in Bugzilla::Util) time => \&Bugzilla::Util::format_time, + + # Simple filter to obscure the '@' in user visible strings + # See bug 120030 for details + obscure_email => sub { + my ($var) = @_; + $var =~ s/\@/\@/g; + return $var; + }, }, PLUGIN_BASE => 'Bugzilla::Template::Plugin', -- cgit v1.2.3-24-g4f1b