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

Missing page-subtitle field added.

This commit is contained in:
Cameron
2021-01-04 12:48:37 -08:00
parent 2c81d51dd9
commit f8f40a23fe
6 changed files with 68 additions and 69 deletions

View File

@@ -98,7 +98,7 @@ class cpage_shortcodes extends e_shortcode
function sc_cpagesubtitle()
{
$subtitle = varset($this->var['sub_title']);
$subtitle = varset($this->var['page_subtitle']);
return $subtitle ? e107::getParser()->toHTML($subtitle, true, 'TITLE') : '';
}