[web2py] Re: Link in a validator error message.
Ok, I may try subclassing the validator and removing the translate calls since I'm not doing and language translation. Thanks, Jim
[web2py] Re: Link in a validator error message.
http://code.google.com/p/web2py/source/browse/gluon/validators.py#64 def translate(text): if text is None: return None elif isinstance(text,(str,unicode)) and have_current: if hasattr(current,'T'): return str(current.T(text)) return str(text) When text is n