mirror of
https://github.com/e107inc/e107.git
synced 2025-07-23 07:52:07 +02:00
PHP 7 Fix.
This commit is contained in:
2
page.php
2
page.php
@@ -275,7 +275,7 @@ class pageClass
|
|||||||
|
|
||||||
if($text)
|
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);
|
$this->pageOutput = array('caption'=>$caption, 'text'=>$text);
|
||||||
//e107::getRender()->tablerender($caption, $text, "cpage_list");
|
//e107::getRender()->tablerender($caption, $text, "cpage_list");
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user