diff options
author | dave%intrec.com <> | 2001-03-09 15:28:59 +0100 |
---|---|---|
committer | dave%intrec.com <> | 2001-03-09 15:28:59 +0100 |
commit | 20aae4d3ea3f4d99a49f1b4ea48eb87ebbaeaafa (patch) | |
tree | 8d42cb9a17df4bab368abb686c880673d5405438 /userprefs.cgi | |
parent | 84298cd109d6419321e4fa043442a46efea9f1fe (diff) | |
download | bugzilla-20aae4d3ea3f4d99a49f1b4ea48eb87ebbaeaafa.tar.gz bugzilla-20aae4d3ea3f4d99a49f1b4ea48eb87ebbaeaafa.tar.xz |
Re-fix for bug 17464: oldemailtech prefs work again.
Diffstat (limited to 'userprefs.cgi')
-rwxr-xr-x | userprefs.cgi | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/userprefs.cgi b/userprefs.cgi index 641317bad..a02605aec 100755 --- a/userprefs.cgi +++ b/userprefs.cgi @@ -198,14 +198,15 @@ sub ShowEmailOptions () { } if ($showNewEmailTech==0) { - print qq{ + print <<"--endquote--"; +<TABLE> <TR><TD COLSPAN="2"> Bugzilla will send out email notification of changed bugs to the current owner, the Reporter of the bug$qacontactpart, and anyone on the CC list. However, you can suppress some of those email notifications. On which of these bugs would you like email notification of changes? </TD></TR> -}; +--endquote-- my $entry = BuildPulldown("emailnotification", [["ExcludeSelfChanges", @@ -215,7 +216,8 @@ On which of these bugs would you like email notification of changes? ["All", "All qualifying bugs"]], $emailnotification); - EmitEntry("Notify me of changes to", $entry); + EmitEntry("Notify me of changes to", $entry); + print "</TABLE>"; } if (Param("newemailtech")) { |