Fixed with:
if ($this->_request->isPost())
{
if ($form->isValid($_POST))
{
$formData = $form->getValues();
Was retrieving the data before validating it with $formData =
$this->_request->getPost();, filtering it and then using the original data.
Fixed now.
--
View this message in context:
http://www.nabble.com/Form-Ini-tp21542208p21546415.html
Sent from the Zend Framework mailing list archive at Nabble.com.
