Solved Invalid unset choice option

This topic has been solved
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...