From 41942f3477c90143cd59fa534923781939908ace Mon Sep 17 00:00:00 2001 From: "myk%mozilla.org" <> Date: Thu, 7 Nov 2002 13:33:51 +0000 Subject: Fix for bug 178801: missing &:: caused function not to be found, resulting in server error r=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 6477d7e61..b6e554be8 100644 --- a/Bugzilla/Search.pm +++ b/Bugzilla/Search.pm @@ -852,7 +852,7 @@ sub init { # chart -1 is generated by other code above, not from the user- # submitted form, so we'll blindly accept any values in chart -1 if ((!$chartfields{$f}) && ($chart != -1)) { - ThrowCodeError("invalid_field_name", {field => $f}); + &::ThrowCodeError("invalid_field_name", {field => $f}); } # This is either from the internal chart (in which case we -- cgit v1.2.3-24-g4f1b