you're overridding the default validator (IS_DATE*) with IS_NOT_EMPTY....

replacing this line
db.news.date_local.requires = IS_NOT_EMPTY()
with
db.news.date_local.requires.append(IS_NOT_EMPTY())

should work.

-- 



Reply via email to