]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Sigh. We now need to lock the attachments table, too, just in case a
authorterry%mozilla.org <>
Sat, 11 Mar 2000 06:26:55 +0000 (06:26 +0000)
committerterry%mozilla.org <>
Sat, 11 Mar 2000 06:26:55 +0000 (06:26 +0000)
midair collision happens which needs to generate text which needs to
look at the attachments table.  Sigh.

process_bug.cgi

index ac8f1a3957084ae13ff625926ee0694fa74e6b8f..f385f13d11d8e3848eb3da2bb8e090cbfad8c2c4 100755 (executable)
@@ -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) {