From 4bd22e0f4ec7e6059d299596e96d909939fe2a84 Mon Sep 17 00:00:00 2001 From: moodler Date: Fri, 30 Apr 2004 12:45:55 +0000 Subject: [PATCH] Bug fix for possible XSS situation in Bug 1292 --- help.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/help.php b/help.php index 6c9a397b00..6312a7e6ff 100644 --- a/help.php +++ b/help.php @@ -68,7 +68,7 @@ } } else { echo "

"; - echo $text; + echo clean_text($text); echo "

"; $helpfound = true; } -- 2.39.5