diff options
Diffstat (limited to 'includes/parsers.php')
-rwxr-xr-x | includes/parsers.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/includes/parsers.php b/includes/parsers.php index 86284af..a57561d 100755 --- a/includes/parsers.php +++ b/includes/parsers.php | |||
@@ -28,8 +28,9 @@ include('includes/smilies.php'); | |||
28 | function parseText($text) | 28 | function parseText($text) |
29 | { | 29 | { |
30 | $text = htmlspecialchars($text); | 30 | $text = htmlspecialchars($text); |
31 | $text = parseSmiliesFirstPass($text); | ||
31 | $text = parseBBCode($text); | 32 | $text = parseBBCode($text); |
32 | $text = parseSmilies($text); | 33 | $text = parseSmiliesSecondPass($text); |
33 | $text = doAprilFoolsDay($text); | 34 | $text = doAprilFoolsDay($text); |
34 | 35 | ||
35 | return $text; | 36 | return $text; |