summaryrefslogtreecommitdiffstats
path: root/enter_bug.cgi
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2006-04-03 04:15:47 +0200
committerlpsolit%gmail.com <>2006-04-03 04:15:47 +0200
commit7619511fe905991ffde812529a09115fff1d20e8 (patch)
tree61938edb80814a457b846f632e91c0f11ede1e5e /enter_bug.cgi
parent8604641c8fbc4518952208b7325bee22bf6cfe21 (diff)
downloadbugzilla-7619511fe905991ffde812529a09115fff1d20e8.tar.gz
bugzilla-7619511fe905991ffde812529a09115fff1d20e8.tar.xz
Bug 330754: Remove AnyEntryGroups() from globals.pl - Patch by Frédéric Buclin <LpSolit@gmail.com> r=mkanat a=justdave
Diffstat (limited to 'enter_bug.cgi')
-rwxr-xr-xenter_bug.cgi12
1 files changed, 3 insertions, 9 deletions
diff --git a/enter_bug.cgi b/enter_bug.cgi
index 068e4fb0e..4b39cb750 100755
--- a/enter_bug.cgi
+++ b/enter_bug.cgi
@@ -54,9 +54,7 @@ use vars qw(
@legal_severity
);
-# If we're using bug groups to restrict bug entry, we need to know who the
-# user is right from the start.
-Bugzilla->login(LOGIN_REQUIRED) if AnyEntryGroups();
+my $user = Bugzilla->login(LOGIN_REQUIRED);
my $cloned_bug;
my $cloned_bug_id;
@@ -68,8 +66,6 @@ my $vars = {};
my $product = trim($cgi->param('product') || '');
if ($product eq '') {
- my $user = Bugzilla->login();
-
# If the user cannot enter bugs in any product, stop here.
my @enterable_products = @{$user->get_enterable_products};
ThrowUserError('no_products') unless scalar(@enterable_products);
@@ -293,8 +289,6 @@ sub pickos {
# End of subroutines
##############################################################################
-Bugzilla->login(LOGIN_REQUIRED) if (!(AnyEntryGroups()));
-
# If a user is trying to clone a bug
# Check that the user has authorization to view the parent bug
# Create an instance of Bug that holds the info from the parent
@@ -302,7 +296,7 @@ $cloned_bug_id = $cgi->param('cloned_bug_id');
if ($cloned_bug_id) {
ValidateBugID($cloned_bug_id);
- $cloned_bug = new Bugzilla::Bug($cloned_bug_id, Bugzilla->user->id);
+ $cloned_bug = new Bugzilla::Bug($cloned_bug_id, $user->id);
}
# We need to check and make sure
@@ -310,7 +304,7 @@ if ($cloned_bug_id) {
my $prod_obj = new Bugzilla::Product({name => $product});
# Update the product name to get the correct case.
$product = $prod_obj->name if defined $prod_obj;
-Bugzilla->user->can_enter_product($product, 1);
+$user->can_enter_product($product, 1);
GetVersionTable();