1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-05 06:07:32 +02:00

Bugtracker #5122 - convert to entities in some areas for W3C compatibility

This commit is contained in:
e107steved
2011-02-27 11:25:04 +00:00
parent c0820771cd
commit 1c9bf89f33
2 changed files with 6 additions and 0 deletions

View File

@@ -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);
?>

View File

@@ -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);
?>