From 0d804e66f40ee8d9de11f7075428ebc1ef162c31 Mon Sep 17 00:00:00 2001 From: "jeff.hedlund%matrixsi.com" <> Date: Wed, 20 Nov 2002 11:03:19 +0000 Subject: Bug 179582 - More informative and easier to read flag email template r=myk a=myk --- Bugzilla/Flag.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Bugzilla') diff --git a/Bugzilla/Flag.pm b/Bugzilla/Flag.pm index 0a404eff4..41cc18071 100644 --- a/Bugzilla/Flag.pm +++ b/Bugzilla/Flag.pm @@ -275,7 +275,7 @@ sub create { && ($flag->{'requestee'}->email_prefs->{'FlagRequestee'} || $flag->{'type'}->{'cc_list'})) { - notify($flag, "request/created-email.txt.tmpl"); + notify($flag, "request/email.txt.tmpl"); } } @@ -347,7 +347,7 @@ sub modify { || $flag->{'type'}->{'cc_list'}) { $flag->{'status'} = $status; - notify($flag, "request/fulfilled-email.txt.tmpl"); + notify($flag, "request/email.txt.tmpl"); } } elsif ($status eq '?') { @@ -371,7 +371,7 @@ sub modify { && ($flag->{'requestee'}->email_prefs->{'FlagRequestee'} || $flag->{'type'}->{'cc_list'})) { - notify($flag, "request/created-email.txt.tmpl"); + notify($flag, "request/email.txt.tmpl"); } } # The user unset the flag, so delete it from the database. @@ -398,7 +398,7 @@ sub clear { # knows why email is being sent about the request. $flag->{'status'} = "X"; - notify($flag, "request/fulfilled-email.txt.tmpl") if $flag->{'requestee'}; + notify($flag, "request/email.txt.tmpl") if $flag->{'requestee'}; } -- cgit v1.2.3-24-g4f1b