1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-20 04:32:01 +02:00

PHP 7 Fix.

This commit is contained in:
Cameron 2018-02-03 10:34:18 -08:00
parent 2469e7c177
commit 83622aece3

View File

@ -275,7 +275,7 @@ class pageClass
if($text)
{
$caption = varset($template['caption'], LAN_PAGE_15);
$caption = isset($template['caption']) ? $template['caption'] : LAN_PAGE_15;
$this->pageOutput = array('caption'=>$caption, 'text'=>$text);
//e107::getRender()->tablerender($caption, $text, "cpage_list");
}