diff options
Diffstat (limited to 'enter_bug.cgi')
-rwxr-xr-x | enter_bug.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/enter_bug.cgi b/enter_bug.cgi index e5463b501..1315ca927 100755 --- a/enter_bug.cgi +++ b/enter_bug.cgi @@ -145,7 +145,7 @@ $user->can_enter_product($product ? $product->name : $product_name, THROW_ERROR) ############################################################################## sub formvalue { my ($name, $default) = (@_); - return $cgi->param($name) || $default || ""; + return Bugzilla->cgi->param($name) || $default || ""; } # Takes the name of a field and a list of possible values for that |