summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authorjeff.hedlund%matrixsi.com <>2002-11-20 12:03:19 +0100
committerjeff.hedlund%matrixsi.com <>2002-11-20 12:03:19 +0100
commit0d804e66f40ee8d9de11f7075428ebc1ef162c31 (patch)
treeadcae5c4329f79c8962c4e6b72921d208022ccf3 /Bugzilla
parentbfd57984d5a0ba4e61d7d8bc296aa6caa1341857 (diff)
downloadbugzilla-0d804e66f40ee8d9de11f7075428ebc1ef162c31.tar.gz
bugzilla-0d804e66f40ee8d9de11f7075428ebc1ef162c31.tar.xz
Bug 179582 - More informative and easier to read flag email template
r=myk a=myk
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/Flag.pm8
1 files changed, 4 insertions, 4 deletions
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'};
}