diff options
author | mkanat%kerio.com <> | 2005-03-05 09:18:47 +0100 |
---|---|---|
committer | mkanat%kerio.com <> | 2005-03-05 09:18:47 +0100 |
commit | ec610fd673feb6d6e18d121b5e67aa3f87e7f4ea (patch) | |
tree | b1d6fe9b10b89a30e2b1932d050d5678362f638a /editclassifications.cgi | |
parent | e4b8b770b0229a0761a3ef5116c7fcad4e5352d5 (diff) | |
download | bugzilla-ec610fd673feb6d6e18d121b5e67aa3f87e7f4ea.tar.gz bugzilla-ec610fd673feb6d6e18d121b5e67aa3f87e7f4ea.tar.xz |
Bug 277782: _throw_error should unlock tables when tables are locked, automatically
Patch By Tomas Kopal <Tomas.Kopal@altap.cz> r=travis, r=LpSolit, a=justdave
Diffstat (limited to 'editclassifications.cgi')
-rwxr-xr-x | editclassifications.cgi | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/editclassifications.cgi b/editclassifications.cgi index a390ed4c6..deeffdce7 100755 --- a/editclassifications.cgi +++ b/editclassifications.cgi @@ -300,12 +300,10 @@ if ($action eq 'update') { if ($classification ne $classificationold) { unless ($classification) { - $dbh->bz_unlock_tables(UNLOCK_ABORT); ThrowUserError("classification_not_specified") } if (TestClassification($classification)) { - $dbh->bz_unlock_tables(UNLOCK_ABORT); ThrowUserError("classification_already_exists", { name => $classification }); } $sth = $dbh->prepare("UPDATE classifications |