summaryrefslogtreecommitdiffstats
path: root/process_bug.cgi
diff options
context:
space:
mode:
authorterry%mozilla.org <>2000-03-11 07:26:55 +0100
committerterry%mozilla.org <>2000-03-11 07:26:55 +0100
commitdbbe021b568c48a7e9a5bece1c0d6815cc1e14d3 (patch)
tree64df353cac48d087236cd147ab7f54f5169fdd82 /process_bug.cgi
parent0efe780581cb476cd8c54b0716f55c3a996711e4 (diff)
downloadbugzilla-dbbe021b568c48a7e9a5bece1c0d6815cc1e14d3.tar.gz
bugzilla-dbbe021b568c48a7e9a5bece1c0d6815cc1e14d3.tar.xz
Sigh. We now need to lock the attachments table, too, just in case a
midair collision happens which needs to generate text which needs to look at the attachments table. Sigh.
Diffstat (limited to 'process_bug.cgi')
-rwxr-xr-xprocess_bug.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/process_bug.cgi b/process_bug.cgi
index ac8f1a395..f385f13d1 100755
--- a/process_bug.cgi
+++ b/process_bug.cgi
@@ -591,7 +591,7 @@ foreach my $id (@idlist) {
SendSQL("LOCK TABLES bugs $write, bugs_activity $write, cc $write, " .
"profiles $write, dependencies $write, votes $write, " .
"keywords $write, longdescs $write, fielddefs $write, " .
- "keyworddefs READ, groups READ");
+ "keyworddefs READ, groups READ, attachments READ");
my @oldvalues = SnapShotBug($id);
my $i = 0;
foreach my $col (@::log_columns) {