diff --git a/e107_core/shortcodes/batch/page_shortcodes.php b/e107_core/shortcodes/batch/page_shortcodes.php index 76d42157b..15335b931 100644 --- a/e107_core/shortcodes/batch/page_shortcodes.php +++ b/e107_core/shortcodes/batch/page_shortcodes.php @@ -198,6 +198,12 @@ class cpage_shortcodes extends e_shortcode $tp = e107::getParser(); $title = $tp->toGlyph($this->page['menu_title']); // (preg_replace('/i_([\w]*)/',"",$this->page['menu_title']); + // make it work without glyph + if(!$title) + { + $title = $this->page['menu_title']; + } + return $tp->toHTML($title, true, 'TITLE'); }