From 528a66fc97a0c1b5e75f386421befcf3bcd799b5 Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Tue, 27 Dec 2016 07:35:33 -0500 Subject: [PATCH] Revert parseIdentityAwareHTML() --- include/bbcode.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/bbcode.php b/include/bbcode.php index e2a6bc71d..f0cf861f3 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -530,7 +530,7 @@ function bb_fixtable_lf($match) { } function parseIdentityAwareHTML($Text) { - + // Hide all [noparse] contained bbtags by spacefying them if (strpos($Text,'[noparse]') !== false) { $Text = preg_replace_callback("/\[noparse\](.*?)\[\/noparse\]/ism", 'bb_spacefy',$Text);