Thanks for all the help. Application seems to be working correctly now.
This community is great and I am so glad i decided to start learning web2py.
-Brandon
On Monday, May 21, 2012 5:53:05 PM UTC-6, Anthony wrote:
>
> Field('park_fax', 'string', requires=IS_EMPTY_OR(IS_MATCH('[\d\-\(\)
>> ]+'))), Field('park_phone_2', 'string', requires=IS_EMPTY_OR(('[\d\-\(\)
>> ]+'))),
>>
>
> Looks like you're missing an IS_MATCH there. Should be:
>
> Field('park_phone_2', 'string', requires=IS_EMPTY_OR(IS_MATCH('[\d\-\(\)
> ]+'))),
>
> Anthony
>