diff options
author | myk%mozilla.org <> | 2002-11-07 14:33:51 +0100 |
---|---|---|
committer | myk%mozilla.org <> | 2002-11-07 14:33:51 +0100 |
commit | 41942f3477c90143cd59fa534923781939908ace (patch) | |
tree | 95d08f88b12b671829534825330a9bf8d336d68e /Bugzilla | |
parent | 4f7effb8ef9aa6c37a6c4dfb0847e79d0de554af (diff) | |
download | bugzilla-41942f3477c90143cd59fa534923781939908ace.tar.gz bugzilla-41942f3477c90143cd59fa534923781939908ace.tar.xz |
Fix for bug 178801: missing &:: caused function not to be found, resulting in server error
r=justdave
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Search.pm | 2 |
1 files changed, 1 insertions, 1 deletions
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 |