1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-04 13:47:31 +02:00

Fix for PHP Notice Undefined index: user_Miscellaneous, Line 113 of /e107_core/shortcodes/single/user_extended.php

This commit is contained in:
Lóna Lore
2017-12-10 12:01:09 +01:00
parent 49f4e1c097
commit 170c9592d5

View File

@@ -110,6 +110,10 @@
if ($parms[1] == 'text')
{
if(!isset($ueStruct['user_'.$parms[0]]))
{
return FALSE;
}
$text_val = $ueStruct['user_'.$parms[0]]['user_extended_struct_text'];
if($text_val)
{