From 769061de60ab909b4b5946ebc3ce9f89f9326302 Mon Sep 17 00:00:00 2001 From: "bbaetz%acm.org" Date: Sat, 3 May 2003 03:21:41 +0000 Subject: [PATCH] Bug 204104 - internal error in Search.pm when searching for invalid keywords/email patch by mike.morgan@oregonstate.edu (michael morgan) r=bbaetz a=justdave git-svn-id: svn://10.0.0.236/trunk@142095 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/bugzilla/Bugzilla/Search.pm | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/mozilla/webtools/bugzilla/Bugzilla/Search.pm b/mozilla/webtools/bugzilla/Bugzilla/Search.pm index 1637671f075..171a1b8245f 100644 --- a/mozilla/webtools/bugzilla/Bugzilla/Search.pm +++ b/mozilla/webtools/bugzilla/Bugzilla/Search.pm @@ -34,6 +34,7 @@ use vars qw($userid); package Bugzilla::Search; use Bugzilla::Config; +use Bugzilla::Error; use Bugzilla::Util; use Date::Format; @@ -103,7 +104,7 @@ sub init { my $c = trim($params->param('votes')); if ($c ne "") { if ($c !~ /^[0-9]*$/) { - &::ThrowUserError("illegal_at_least_x_votes", + ThrowUserError("illegal_at_least_x_votes", { value => $c }); } push(@specialchart, ["votes", "greaterthan", $c - 1]); @@ -217,7 +218,7 @@ sub init { my $c = trim($params->param('changedin')); if ($c ne "") { if ($c !~ /^[0-9]*$/) { - &::ThrowUserError("illegal_changed_in_last_x_days", + ThrowUserError("illegal_changed_in_last_x_days", { value => $c }); } push(@specialchart, ["changedin", @@ -460,10 +461,10 @@ sub init { $t = "greaterthan"; } if ($field eq "ispatch" && $v ne "0" && $v ne "1") { - &::ThrowUserError("illegal_attachment_is_patch"); + ThrowUserError("illegal_attachment_is_patch"); } if ($field eq "isobsolete" && $v ne "0" && $v ne "1") { - &::ThrowUserError("illegal_is_obsolete"); + ThrowUserError("illegal_is_obsolete"); } $f = "$table.$field"; }, @@ -992,7 +993,7 @@ sub SqlifyDate { } my $date = str2time($str); if (!defined($date)) { - &::ThrowUserError("illegal_date", { date => $str }); + ThrowUserError("illegal_date", { date => $str }); } return time2str("%Y-%m-%d %H:%M:%S", $date); }