diff --git a/e107_core/shortcodes/batch/page_shortcodes.php b/e107_core/shortcodes/batch/page_shortcodes.php index 24c833179..350e65ef9 100644 --- a/e107_core/shortcodes/batch/page_shortcodes.php +++ b/e107_core/shortcodes/batch/page_shortcodes.php @@ -114,6 +114,10 @@ class cpage_shortcodes extends e_shortcode $text = e107::getParser()->stripBlockTags($text); } + if(!empty($parm['raw'])) + { + return $text; + } return $text ? e107::getParser()->toHTML($text, true, 'BODY') : ''; }