summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Chart.pm
diff options
context:
space:
mode:
authormkanat%bugzilla.org <>2006-06-26 19:06:47 +0200
committermkanat%bugzilla.org <>2006-06-26 19:06:47 +0200
commit0cb96841eef5fe65ba5dcf704ac2012af839feef (patch)
tree91c26aaf260e36bcd6dfaa8e9bd201ead17b041c /Bugzilla/Chart.pm
parentb74f46a8039ebb62472a48a50139f696e6b6d0c7 (diff)
downloadbugzilla-0cb96841eef5fe65ba5dcf704ac2012af839feef.tar.gz
bugzilla-0cb96841eef5fe65ba5dcf704ac2012af839feef.tar.xz
Bug 342410: Various modules assume functions are in global scope, when none are
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=justdave
Diffstat (limited to 'Bugzilla/Chart.pm')
-rw-r--r--Bugzilla/Chart.pm7
1 files changed, 4 insertions, 3 deletions
diff --git a/Bugzilla/Chart.pm b/Bugzilla/Chart.pm
index c878186bc..b2db9da30 100644
--- a/Bugzilla/Chart.pm
+++ b/Bugzilla/Chart.pm
@@ -32,6 +32,7 @@ use lib ".";
# the same points.
package Bugzilla::Chart;
+use Bugzilla::Error;
use Bugzilla::Util;
use Bugzilla::Series;
@@ -75,7 +76,7 @@ sub init {
if ($param =~ /^line(\d+)$/) {
foreach my $series_id ($cgi->param($param)) {
detaint_natural($series_id)
- || &::ThrowCodeError("invalid_series_id");
+ || ThrowCodeError("invalid_series_id");
my $series = new Bugzilla::Series($series_id);
push(@{$self->{'lines'}[$1]}, $series) if $series;
}
@@ -101,7 +102,7 @@ sub init {
foreach my $date ('datefrom', 'dateto') {
if ($self->{$date}) {
$self->{$date} = str2time($self->{$date})
- || &::ThrowUserError("illegal_date", { date => $self->{$date}});
+ || ThrowUserError("illegal_date", { date => $self->{$date}});
}
}
@@ -109,7 +110,7 @@ sub init {
if ($self->{'datefrom'} && $self->{'dateto'} &&
$self->{'datefrom'} > $self->{'dateto'})
{
- &::ThrowUserError("misarranged_dates",
+ ThrowUserError("misarranged_dates",
{'datefrom' => $cgi->param('datefrom'),
'dateto' => $cgi->param('dateto')});
}