summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authormyk%mozilla.org <>2002-09-30 01:04:24 +0200
committermyk%mozilla.org <>2002-09-30 01:04:24 +0200
commit733a4f3ba362e512979ee47355850c6eb2041ac1 (patch)
tree468903d6a5c2f18c887112fc3e4cd720a50c1800 /Bugzilla
parent0e7527da330feb7c13374ba134728ff4f9872fb1 (diff)
downloadbugzilla-733a4f3ba362e512979ee47355850c6eb2041ac1.tar.gz
bugzilla-733a4f3ba362e512979ee47355850c6eb2041ac1.tar.xz
Fix for bug 171420: fixes usage of $template, $vars, and &Param in Flag.pm.
r=bbaetz
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/Flag.pm35
1 files changed, 17 insertions, 18 deletions
diff --git a/Bugzilla/Flag.pm b/Bugzilla/Flag.pm
index 3feaae4cd..997b46bf7 100644
--- a/Bugzilla/Flag.pm
+++ b/Bugzilla/Flag.pm
@@ -31,8 +31,12 @@ package Bugzilla::Flag;
use Bugzilla::FlagType;
use Bugzilla::User;
+use Bugzilla::Config;
+
use Attachment;
+# Note that this line doesn't actually import these variables for some reason,
+# so I have to use them as $::template and $::vars in the package code.
use vars qw($template $vars);
# Note! This module requires that its caller have said "require CGI.pl"
@@ -402,14 +406,14 @@ sub FormToNewFlags {
}
if ($verify_requestees) {
- $vars->{'target'} = $target;
- $vars->{'flags'} = \@flags;
- $vars->{'form'} = $data;
- $vars->{'mform'} = \%::MFORM || \%::MFORM;
+ $::vars->{'target'} = $target;
+ $::vars->{'flags'} = \@flags;
+ $::vars->{'form'} = $data;
+ $::vars->{'mform'} = \%::MFORM || \%::MFORM;
- print "Content-Type: text/html\n\n" unless $vars->{'header_done'};
- $::template->process("request/verify.html.tmpl", $vars)
- || &::ThrowTemplateError($template->error());
+ print "Content-Type: text/html\n\n" unless $::vars->{'header_done'};
+ $::template->process("request/verify.html.tmpl", $::vars)
+ || &::ThrowTemplateError($::template->error());
exit;
}
@@ -427,7 +431,7 @@ sub MatchRequestees {
# automatically appends an email suffix to each user's login name,
# in which case we can't guarantee their names are at least three
# characters long.
- if (!&Param('emailsuffix') && length($requestee_str) < 3) {
+ if (!Param('emailsuffix') && length($requestee_str) < 3) {
&::ThrowUserError("requestee_too_short");
}
@@ -510,22 +514,17 @@ sub notify {
my ($flag, $template_file) = @_;
- # Work around the intricacies of globals.pl not being templatized
- # by defining local variables for the $::template and $::vars globals.
- my $template = $::template;
- my $vars = $::vars;
-
- $vars->{'flag'} = $flag;
+ $::vars->{'flag'} = $flag;
my $message;
my $rv =
- $template->process($template_file, $vars, \$message);
+ $::template->process($template_file, $::vars, \$message);
if (!$rv) {
- print "Content-Type: text/html\n\n" unless $vars->{'header_done'};
- &::ThrowTemplateError($template->error());
+ print "Content-Type: text/html\n\n" unless $::vars->{'header_done'};
+ &::ThrowTemplateError($::template->error());
}
- my $delivery_mode = &::Param("sendmailnow") ? "" : "-ODeliveryMode=deferred";
+ my $delivery_mode = Param("sendmailnow") ? "" : "-ODeliveryMode=deferred";
open(SENDMAIL, "|/usr/lib/sendmail $delivery_mode -t -i")
|| die "Can't open sendmail";
print SENDMAIL $message;