From 07be6bd4ac8e85b3c940abcd4b4d4a70a3d93593 Mon Sep 17 00:00:00 2001 From: Starla Insigna Date: Fri, 13 Aug 2010 15:29:56 -0400 Subject: Added HTML quoting to parsing process Because HTML quoting was not done, text in between angle brackets would disappear because it would be thought that they were real. --- includes/parsers.php | 1 + 1 file changed, 1 insertion(+) diff --git a/includes/parsers.php b/includes/parsers.php index b7dd869..86284af 100755 --- a/includes/parsers.php +++ b/includes/parsers.php @@ -27,6 +27,7 @@ include('includes/smilies.php'); function parseText($text) { + $text = htmlspecialchars($text); $text = parseBBCode($text); $text = parseSmilies($text); $text = doAprilFoolsDay($text); -- cgit 1.4.1