For those of you playing with TurboGears svn, the has_error parameter to methods is now gone. In its place, you can just check cherrypy.request.form_errors to see if there were any problems.
if has_errors:
do something
just becomes
if cherrypy.request.form_errors:
do something
Use of the old validation_error method is now deprecated.
Kevin
--
Kevin Dangoor
Author of the Zesty News RSS newsreader
email: [EMAIL PROTECTED]
company: http://www.BlazingThings.com
blog: http://www.BlueSkyOnMars.com

