diff options
author | lpsolit%gmail.com <> | 2006-03-31 20:27:26 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-03-31 20:27:26 +0200 |
commit | f5c61f2184b3d93768eacfd676a5513caabcc1a5 (patch) | |
tree | ec32beeba4fd15efbb1d309b832b67029cbc0996 /editcomponents.cgi | |
parent | 8f893f4d3aa0c635193b2f4240fc707bd31846ac (diff) | |
download | bugzilla-f5c61f2184b3d93768eacfd676a5513caabcc1a5.tar.gz bugzilla-f5c61f2184b3d93768eacfd676a5513caabcc1a5.tar.xz |
Bug 301020: Remove useless locked tables - Patch by Frédéric Buclin <LpSolit@gmail.com> r=wurblzap a=justdave
Diffstat (limited to 'editcomponents.cgi')
-rwxr-xr-x | editcomponents.cgi | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/editcomponents.cgi b/editcomponents.cgi index 601873e83..30caaf5f3 100755 --- a/editcomponents.cgi +++ b/editcomponents.cgi @@ -359,8 +359,7 @@ if ($action eq 'update') { my $default_assignee_id = login_to_id($default_assignee); my $default_qa_contact_id = login_to_id($default_qa_contact) || undef; - $dbh->bz_lock_tables('components WRITE', 'products READ', - 'profiles READ'); + $dbh->bz_lock_tables('components WRITE', 'profiles READ'); if ($comp_name ne $component_old->name) { |