From e913c00fe27789fc2c3798654654952350117b46 Mon Sep 17 00:00:00 2001
From: "bbaetz%student.usyd.edu.au" <>
Date: Tue, 28 May 2002 11:01:20 +0000
Subject: [PATCH] Fix bug 146447, part 2 r=gerv, mattyt, jaypee
---
bug_form.pl | 2 +-
globals.pl | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/bug_form.pl b/bug_form.pl
index 016dac92fe..1100ba9b04 100644
--- a/bug_form.pl
+++ b/bug_form.pl
@@ -243,7 +243,7 @@ print "
Assigned To:
|
- $bug{'assigned_to'} |
+ " . html_quote($bug{'assigned_to'}) . " |
| ";
if (Param("usetargetmilestone")) {
diff --git a/globals.pl b/globals.pl
index cf273e8247..b03293adc5 100644
--- a/globals.pl
+++ b/globals.pl
@@ -1058,7 +1058,7 @@ sub GetLongDescriptionAsHTML {
if ($count) {
$result .= "
------- Additional Comments From ";
if ($who) {
- $result .= qq{$who } .
+ $result .= "" . html_quote($who) . " " .
time2str("%Y-%m-%d %H:%M", str2time($when)) .
" -------
\n";
} else {
--
2.47.2