1
0
mirror of https://github.com/e107inc/e107.git synced 2025-09-02 19:02:39 +02:00

Remove some references to deprecated functions/methods.

This commit is contained in:
Cameron
2015-02-14 23:34:15 -08:00
parent db057b3788
commit e576370e57
84 changed files with 319 additions and 317 deletions

View File

@@ -56,12 +56,12 @@ if(e_QUERY)
}
//set mode
$rc->mode = (varsettrue($mode) == 'new' ? 'new_page' : 'recent_page');
$rc->mode = (vartrue($mode) == 'new' ? 'new_page' : 'recent_page');
//parse page
$text = $rc->displayPage();
$caption = varsettrue($rc->list_pref[$rc->mode."_caption"], LIST_MENU_1);
$caption = vartrue($rc->list_pref[$rc->mode."_caption"], LIST_MENU_1);
$rc->e107->ns->tablerender($caption, $text);
unset($text);