From 9ffc6eb52bb9c549dae85a51aaf2b29750b7ba14 Mon Sep 17 00:00:00 2001 From: "mkanat%kerio.com" <> Date: Thu, 10 Mar 2005 16:20:41 +0000 Subject: Bug 283561: Move AppendComment out of globals.pl Patch By Max Kanat-Alexander r=vladd, a=justdave --- Bugzilla/Bug.pm | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) (limited to 'Bugzilla') diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm index 2a4375081..4e494b8a6 100755 --- a/Bugzilla/Bug.pm +++ b/Bugzilla/Bug.pm @@ -47,6 +47,7 @@ use Bugzilla::Error; use base qw(Exporter); @Bugzilla::Bug::EXPORT = qw( + AppendComment bug_alias_to_id ValidateComment ); @@ -603,6 +604,38 @@ sub bug_alias_to_id ($) { # Subroutines ##################################################################### +sub AppendComment ($$$;$$$) { + my ($bugid, $who, $comment, $isprivate, $timestamp, $work_time) = @_; + $work_time ||= 0; + my $dbh = Bugzilla->dbh; + + ValidateTime($work_time, "work_time") if $work_time; + trick_taint($work_time); + + # Use the date/time we were given if possible (allowing calling code + # to synchronize the comment's timestamp with those of other records). + $timestamp = "NOW()" unless $timestamp; + + $comment =~ s/\r\n/\n/g; # Handle Windows-style line endings. + $comment =~ s/\r/\n/g; # Handle Mac-style line endings. + + if ($comment =~ /^\s*$/) { # Nothin' but whitespace + return; + } + + # Comments are always safe, because we always display their raw contents, + # and we use them in a placeholder below. + trick_taint($comment); + my $whoid = &::DBNameToIdAndCheck($who); + my $privacyval = $isprivate ? 1 : 0 ; + $dbh->do(q{INSERT INTO longdescs + (bug_id, who, bug_when, thetext, isprivate, work_time) + VALUES (?,?,?,?,?,?)}, undef, + ($bugid, $whoid, $timestamp, $comment, $privacyval, $work_time)); + $dbh->do("UPDATE bugs SET delta_ts = ? WHERE bug_id = ?", + undef, $timestamp, $bugid); +} + sub EmitDependList { my ($myfield, $targetfield, $bug_id) = (@_); my $dbh = Bugzilla->dbh; -- cgit v1.2.3-24-g4f1b