Bug Invalid unset choice option

There is a bug in this version
T

truonglv

Guest
In the file XF\Template\Templater.php line 5380 it seems trigger invalid unset.

PHP:

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

Continue reading...