From 12da0dd5cc25944a940b0264cc7291ba7b43a3de Mon Sep 17 00:00:00 2001 From: "myk%mozilla.org" <> Date: Thu, 7 Nov 2002 14:31:51 +0000 Subject: Fix for bug 178801: Missing &:: caused function call to fail, resulting in server error. r=justdave a=justdave --- Bugzilla/Search.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Bugzilla/Search.pm') diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm index b6e554be8..a7c329307 100644 --- a/Bugzilla/Search.pm +++ b/Bugzilla/Search.pm @@ -968,7 +968,7 @@ sub SqlifyDate { my $date = str2time($str); if (!defined($date)) { $::vars->{'date'} = $str; - ThrowUserError("illegal_date"); + &::ThrowUserError("illegal_date"); } return time2str("%Y-%m-%d %H:%M:%S", $date); } -- cgit v1.2.3-24-g4f1b