patch submitted by john.beranek@pace.co.uk (John Beranek)
while (MoreSQLData()) {
my ($who, $when, $text) = (FetchSQLData());
if ($count) {
- $result .= "\n\n------- Additional Comments From $who " .
+ $result .= "\n\n------- Additional Comments From $who".Param('emailsuffix')." ".
time2str("%Y-%m-%d %H:%M", str2time($when)) . " -------\n";
}
$result .= $text;
SendSQL($query);
while (MoreSQLData()) {
my ($who, $email, $when, $text) = (FetchSQLData());
+ $email .= Param('emailsuffix');
if ($count) {
$result .= "<BR><BR><I>------- Additional Comments From ";
if ($who) {
my ($who, $what, $when, $old, $new) = (@$ref);
if ($who ne $lastwho) {
$lastwho = $who;
- $difftext .= "\n$who changed:\n\n";
+ $difftext .= "\n$who" . Param('emailsuffix') . " changed:\n\n";
$difftext .= FormatTriple("What ", "Old Value", "New Value");
$difftext .= ('-' x 76) . "\n";
}
my $isnew = ($start !~ m/[1-9]/);
my %substs;
+
+ $person .= Param('emailsuffix');
$substs{"neworchanged"} = $isnew ? "New" : "Changed";
$substs{"to"} = $person;
$substs{"cc"} = '';