diff options
author | travis%sedsystems.ca <> | 2005-02-09 00:51:02 +0000 |
---|---|---|
committer | travis%sedsystems.ca <> | 2005-02-09 00:51:02 +0000 |
commit | f8aeecaf8cd33d87315c5a50be9a762e142062a4 (patch) | |
tree | c92dc215a4f6780005bacf825fb6fbdc39552ae1 /attachment.cgi | |
parent | c0df359943e8b746f02f5c43d25e5ffea99f8d19 (diff) | |
download | bugs-f8aeecaf8cd33d87315c5a50be9a762e142062a4.tar bugs-f8aeecaf8cd33d87315c5a50be9a762e142062a4.tar.gz bugs-f8aeecaf8cd33d87315c5a50be9a762e142062a4.tar.bz2 bugs-f8aeecaf8cd33d87315c5a50be9a762e142062a4.tar.xz bugs-f8aeecaf8cd33d87315c5a50be9a762e142062a4.zip |
Bug 257315 : type of delta_ts in bugs table should not be timestamp
Patch by Tomas Kopal <Tomas.Kopal@altap.cz> r=mkanat, 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'}"); |