From: myk%mozilla.org <> Date: Thu, 7 Nov 2002 14:31:51 +0000 (+0000) Subject: Fix for bug 178801: Missing &:: caused function call to fail, resulting in server... X-Git-Tag: bugzilla-2.17.1~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=12da0dd5cc25944a940b0264cc7291ba7b43a3de;p=thirdparty%2Fbugzilla.git Fix for bug 178801: Missing &:: caused function call to fail, resulting in server error. r=justdave a=justdave --- diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm index b6e554be88..a7c3293079 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); }