summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2005-06-21 07:20:49 +0200
committerlpsolit%gmail.com <>2005-06-21 07:20:49 +0200
commit0b8d70a6a120da140ed41b37c5d98a902e16cae4 (patch)
tree28206879ab81be477a0d5dd38c915a389f148e4d
parent05843d27d99eb3ee3d6ac400d48af97f23760f44 (diff)
downloadbugzilla-0b8d70a6a120da140ed41b37c5d98a902e16cae4.tar.gz
bugzilla-0b8d70a6a120da140ed41b37c5d98a902e16cae4.tar.xz
Backing out bug 180792. A table is locked as READ while my patch tries to write in it :(
-rw-r--r--Bugzilla/Flag.pm3
-rwxr-xr-xattachment.cgi2
2 files changed, 1 insertions, 4 deletions
diff --git a/Bugzilla/Flag.pm b/Bugzilla/Flag.pm
index 765ad9afa..10cbcd0d0 100644
--- a/Bugzilla/Flag.pm
+++ b/Bugzilla/Flag.pm
@@ -447,9 +447,6 @@ sub update_activity {
(bug_id, attach_id, who, bug_when, fieldid, removed, added)
VALUES ($bug_id, $attach_id, $::userid, $timestamp,
$field_id, $sql_removed, $sql_added)");
-
- $dbh->do("UPDATE bugs SET delta_ts = $timestamp WHERE bug_id = ?",
- undef, $bug_id);
}
}
diff --git a/attachment.cgi b/attachment.cgi
index 0ed608c52..8b9bdaafd 100755
--- a/attachment.cgi
+++ b/attachment.cgi
@@ -1251,7 +1251,7 @@ sub update
# If the user submitted a comment while editing the attachment,
# add the comment to the bug.
- if ($cgi->param('comment'))
+ if (defined $cgi->param('comment'))
{
# Prepend a string to the comment to let users know that the comment came
# from the "edit attachment" screen.