diff options
author | travis%sedsystems.ca <> | 2005-01-29 04:01:27 +0100 |
---|---|---|
committer | travis%sedsystems.ca <> | 2005-01-29 04:01:27 +0100 |
commit | ed20d719e2df695ed2c9127f364886b902d82a24 (patch) | |
tree | 78e3a5205b856822753ff44d7e49f6b967b1d86d /attachment.cgi | |
parent | fc649d472490ea13b935eccf1ecd692dd7112fd4 (diff) | |
download | bugzilla-ed20d719e2df695ed2c9127f364886b902d82a24.tar.gz bugzilla-ed20d719e2df695ed2c9127f364886b902d82a24.tar.xz |
Bug 257315 : type of delta_ts in bugs table should not be timestamp
Patch by Tomas Kopal <Tomas.Kopal@altap.cz> r=vladd, LpSolit a=justdave
Diffstat (limited to 'attachment.cgi')
-rwxr-xr-x | attachment.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/attachment.cgi b/attachment.cgi index 202c8818f..a5407e8b0 100755 --- a/attachment.cgi +++ b/attachment.cgi @@ -940,7 +940,7 @@ sub insert @newvalues = map(SqlQuote($_), @newvalues); # Update the bug record. Note that this doesn't involve login_name. - SendSQL("UPDATE bugs SET " . + SendSQL("UPDATE bugs SET delta_ts = $sql_timestamp, " . join(", ", map("$fields[$_] = $newvalues[$_]", (0..2))) . " WHERE bug_id = $::FORM{'bugid'}"); |