Hi,
Is there a specific reason why in the FormHelper, the
options_for_select() would not escape htmlspecialchars for $value in
line 95 ?
$html .= content_tag('option', $value, $option_options)."\n";
instead of :
$html .= content_tag('option', escape_once($value),
$option_options)."\n";
If i have in my list of options a label string like '< 15', xhtml
will not validate as it should be rendered as '< 15' :
line 69 seems to be also concerned with the 'include_custom' option.
I've tried to find in the trac or in the forum any topics on that,
but found nothing.
Using symfony 1.0.5, utf-8 encoding
Thanks,
Eric
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"symfony users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en
-~----------~----~----~----~------~----~------~--~---