I see the following error when running an acceptance test with lime on a validatable form and fill in data that makes the validation fail:
PHP send a "warning" error at symfony/lib/widget/sfWidgetFormSelectCheckbox.class.php line 107 (in_array(): Wrong datatype for second argument)Exception: 182
A solution seems to be a simple test in the line 107 of sfWidgetFormSelectCheckbox.class.php if $value is actually an array:
if (is_array($value))
{
if (in_array(strval($key), $value))
...
I don't know if this is the way it's supposed to work or I missed some configuration for the test or the validation.