TListBox setSelectedValue not working properly
because in line 166 there's a minor typo:
if(!is_array($value))
$temp[] = $value;
$value = $temp;
$this->clearSelection();
I think a parenthesis is missing,
So it will look like this:
if(!is_array($value))
{
$temp[] = $value;
$value = $temp;
}
$this->clearSelection();
Thank you,