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

PHP8 Warning removal.

This commit is contained in:
Cameron
2021-01-01 10:45:26 -08:00
parent 81634d5f5a
commit 14862f0463
18 changed files with 114 additions and 86 deletions

View File

@@ -65,6 +65,11 @@ class list_shortcodes
function sc_list_heading()
{
if(empty($this->row['heading']))
{
return null;
}
return e107::getParser()->toHTML($this->row['heading'], true, "TITLE");
}
@@ -75,6 +80,11 @@ class list_shortcodes
function sc_list_category()
{
if(empty($this->row['category']))
{
return null;
}
return e107::getParser()->toHTML($this->row['category'], true, "");
}