Well... It's only a validation error... Let it be and that's all.
To remove that there are 3 ways:
1. Don't use form_tag. Instead of it write something like this:
<form action="<?php url_for('controller/action') ?>">
2. Make your helper for closing the form:
function form_end_tag() {
return "</form>";
}
3. Use Symfony 1.1 or simply Symfony 1.1 Form Framework. :)
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"symfony developers" 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-devs?hl=en
-~----------~----~----~----~------~----~------~--~---