Code: Select all
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_mods.php on line 103: Undefined index: LANG
Code: Select all
$return [$row['attrs']['LANG']] = trim($row['data']);
Code: Select all
function get_title($header)
{
if (is_string($header['TITLE']))
{
return($header['TITLE']);
}
$return = array();
foreach ($header['TITLE'] as $row)
{
if (!is_array($row))
{
continue;
}
$return [$row['attrs']['LANG']] = trim($row['data']);
}
return($return);
}