All pastes #2051624 Raw Edit

Stuff

public php v1 · immutable
#2051624 ·published 2011-04-28 17:01 UTC
rendered paste body
# Without validation it works (but doesn't validate of course):$email = new Zend_Form_Element_Text('email');        $email->setLabel('Email address')              ->addFilter('StringToLower')              ->setRequired(true)              ->addValidator('NotEmpty');# But if instead I try to validate, the webpage hangs indefinitely:$email = new Zend_Form_Element_Text('email');        $email->setLabel('Email address')              ->addFilter('StringToLower')              ->setRequired(true)              ->addValidator('NotEmpty')              ->addValidator('EmailAddress');