# HG changeset patch # User Sylvain Thénault # Date 1269607521 -3600 # Node ID 00782905b720ae6a701fdad2d117e5c94aadd8af # Parent c28db242721d0ad3fd9c323a57308a4d600542e9 [form controller] clear caches in case some attribute participating to the rest path has been modified, avoid redirection to a no more existant page (fix #753567) diff -r c28db242721d -r 00782905b720 web/controller.py --- a/web/controller.py Fri Mar 26 13:33:47 2010 +0100 +++ b/web/controller.py Fri Mar 26 13:45:21 2010 +0100 @@ -136,6 +136,9 @@ params.update(newparams) newparams = params elif self._edited_entity: + # clear caches in case some attribute participating to the rest path + # has been modified + self._edited_entity.clear_all_caches() path = self._edited_entity.rest_path() else: path = 'view'