From 491f40fc7d1d671db0aea71ff09a088a89333304 Mon Sep 17 00:00:00 2001 From: "jocuri%softhome.net" <> Date: Sun, 19 Oct 2003 15:46:39 +0000 Subject: Bug 218977: "Table 'namedqueries' was not locked with LOCK TABLES" on ThrowUserError('product_edit_denied'); r=bbaetz; a=justdave. --- process_bug.cgi | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'process_bug.cgi') diff --git a/process_bug.cgi b/process_bug.cgi index e504fd7ea..e9b665c3a 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -1143,7 +1143,7 @@ foreach my $id (@idlist) { $oldhash{'product'} = get_product_name($oldhash{'product_id'}); if (!CanEditProductId($oldhash{'product_id'})) { ThrowUserError("product_edit_denied", - { product => $oldhash{'product'} }); + { product => $oldhash{'product'} }, "abort"); } if (defined $::FORM{'product'} @@ -1151,7 +1151,7 @@ foreach my $id (@idlist) { && $::FORM{'product'} ne $oldhash{'product'} && !CanEnterProduct($::FORM{'product'})) { ThrowUserError("entry_access_denied", - { product => $::FORM{'product'} }); + { product => $::FORM{'product'} }, "abort"); } if ($requiremilestone) { my $value = $::FORM{'target_milestone'}; @@ -1161,7 +1161,6 @@ foreach my $id (@idlist) { SendSQL("SELECT defaultmilestone FROM products WHERE name = " . SqlQuote($oldhash{'product'})); if ($value eq FetchOneColumn()) { - SendSQL("UNLOCK TABLES"); ThrowUserError("milestone_required", { bug_id => $id }, "abort"); -- cgit v1.2.3-24-g4f1b