From cff62b250c90f9fd336ceac5e2c557bf4c448859 Mon Sep 17 00:00:00 2001 From: Michael Foster Date: Sun, 18 Aug 2013 04:49:56 +1000 Subject: [PATCH] Bugfix: raw html posting --- inc/functions.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/inc/functions.php b/inc/functions.php index 3b81cf4c..259245f3 100644 --- a/inc/functions.php +++ b/inc/functions.php @@ -1485,8 +1485,9 @@ function markup(&$body, $track_cites = false) { $body = preg_replace('@(.+?)@us', '', $body); $body = preg_replace('@<(tinyboard) escape ([\w\s]+)>@i', '<$1 $2>', $body); - if (isset($modifiers['raw html']) && $modifiers['raw html'] == '1') - return $body; + if (isset($modifiers['raw html']) && $modifiers['raw html'] == '1') { + return array(); + } $body = str_replace("\r", '', $body); $body = utf8tohtml($body);