Fixed Invalid unset choice option

truonglv

Well-known member
Affected version
2.2.9
In the file XF\Template\Templater.php line 5380 it seems trigger invalid unset.

PHP:
if (isset($choice['_type']))
{
   $type = $choice['_type'];
}
else
{
   $type = 'option';
}
unset($choice['_type']);
 
Top Bottom