From 7f6e3bb03270228a882d6e27a8941dfd8e69aecb Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Wed, 14 Aug 2002 09:51:24 +0000 Subject: [PATCH] Don't parse the HTML code inside the bug report. --- scripts/decode_bug.php3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/decode_bug.php3 b/scripts/decode_bug.php3 index 5aa0211df..310da9855 100644 --- a/scripts/decode_bug.php3 +++ b/scripts/decode_bug.php3 @@ -68,7 +68,7 @@ */ function PMA_printDecodedBug($textdata) { - return '
' . $textdata . '

'; + return '
' . htmlspecialchars($textdata) . '

'; } // end of the "PMA_printDecodedBug()" function