Menu

#172 TListBox setSelectedValue not working properly

v2.0
open
nobody
components (68)
5
2006-05-12
2006-05-12
No

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,

Discussion


Log in to post a comment.