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

Extra checks added in the signup extended user fields shortcode.

Improved renderLayout test.
This commit is contained in:
Cameron
2021-01-26 11:58:07 -08:00
parent 46cb21b025
commit 184d920514
3 changed files with 130 additions and 11 deletions

View File

@@ -469,7 +469,16 @@ class signup_shortcodes extends e_shortcode
{
if(empty($this->template['extended-user-fields']))
{
return (ADMIN) ? "SIGNUP 'extended-user-fields' template not defined" : '';
$msg = "SIGNUP 'extended-user-fields' template is not defined or empty";
trigger_error($ms);
return (ADMIN) ? $msg : '';
}
if(empty($this->template['extended-category']))
{
$msg = "SIGNUP 'extended-user-fields' template is not defined or empty";
trigger_error($ms);
return (ADMIN) ? $msg : '';
}
@@ -517,7 +526,7 @@ class signup_shortcodes extends e_shortcode
$catName = $cat['user_extended_struct_text'] ? $cat['user_extended_struct_text'] : $cat['user_extended_struct_name'];
$catName = defset($catName, $catName);
$text .= str_replace('{EXTENDED_CAT_TEXT}', $tp->toHTML($catName, false, 'emotes_off,defs'), $this->template['extended-category']);
$text .= str_replace('{EXTENDED_CAT_TEXT}', $tp->toHTML($catName, false, 'TITLE'), $this->template['extended-category']);
$done_heading = true;
}