The problem is that IS_TIME(...error_message='Formaat komt niet overeen met %d-%m-%Y')...)
should be IS_TIME(...error_message='Formaat komt niet overeen met %%d-%%m-%%Y')...) or IS_TIME(...error_message='Formaat komt niet overeen met DD-MM-YYYY')...) If you want a '%' in an error message it must be escaped '%%' else it is interpreted as a placeholder. On Friday, 6 September 2013 10:19:31 UTC-5, Annet wrote: > > I downloaded web2py from: https://github.com/web2py/web2py/ > And tested my application, I still get the same error. > > > Kind regards, > > Annet. > -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.

