From 1a9927c0c012c6c2dcc82552d0e397c992599754 Mon Sep 17 00:00:00 2001 From: "ghendricks%novell.com" <> Date: Mon, 1 Jun 2009 14:43:12 +0000 Subject: Bug 494628 - Crash when trying to file a bug in a closed product r=LpSolit patch by ghendricks@novell.com --- Bugzilla/User.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Bugzilla/User.pm') diff --git a/Bugzilla/User.pm b/Bugzilla/User.pm index 58183a005..55be2cf9e 100644 --- a/Bugzilla/User.pm +++ b/Bugzilla/User.pm @@ -728,7 +728,7 @@ sub can_enter_product { ThrowUserError('entry_access_denied', {product => $product_name}); } # It could be closed for bug entry... - elsif ($product->disallow_new) { + elsif (!$product->is_active) { ThrowUserError('product_disabled', {product => $product}); } # It could have no components... -- cgit v1.2.3-24-g4f1b