in the form bind method, it check the request method for submit post data, here
is code
if ('POST' == $request->getMethod()) {
/*
some code
*/
}
but some time, one site has not only one form, then one form submit, and the
others submit too(cause the request method is 'POST').
i think it should check more information, maybe the form name.
if ('POST' == $request->getMethod() &&
$request->request->has($this->getName())) {
/*
some code
*/
}
--
If you want to report a vulnerability issue on symfony, please send it to
security at symfony-project.com
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