diff --git a/e107_plugins/list_new/list_new_menu.php b/e107_plugins/list_new/list_new_menu.php index df6cee905..02ed35b7c 100644 --- a/e107_plugins/list_new/list_new_menu.php +++ b/e107_plugins/list_new/list_new_menu.php @@ -45,7 +45,10 @@ $rc->mode = "new_menu"; $text = $rc->displayMenu(); $caption = varsettrue($rc->list_pref[$rc->mode."_caption"], LIST_MENU_1); +$caption = $rc->e107->tp->toHtml($caption, FALSE, 'USER_TITLE'); +$text = $rc->e107->tp->toHtml($caption, TRUE, 'USER_BODY'); $rc->e107->ns->tablerender($caption, $text, 'list_new'); +unset($caption); unset($text); ?> \ No newline at end of file diff --git a/e107_plugins/list_new/list_recent_menu.php b/e107_plugins/list_new/list_recent_menu.php index a3e2dd8eb..c309af1fb 100644 --- a/e107_plugins/list_new/list_recent_menu.php +++ b/e107_plugins/list_new/list_recent_menu.php @@ -45,7 +45,10 @@ $rc->mode = "recent_menu"; $text = $rc->displayMenu(); $caption = varsettrue($rc->list_pref[$rc->mode."_caption"], LIST_MENU_1); +$caption = $rc->e107->tp->toHtml($caption, FALSE, 'USER_TITLE'); +$text = $rc->e107->tp->toHtml($caption, TRUE, 'USER_BODY'); $rc->e107->ns->tablerender($caption, $text, 'list_recent'); +unset($caption); unset($text); ?> \ No newline at end of file