Browse Source

Fix error page when PUT content without change it

Bastien Sevajol 9 years ago
parent
commit
cfc9e789af
1 changed files with 4 additions and 0 deletions
  1. 4 0
      tracim/tracim/controllers/content.py

+ 4 - 0
tracim/tracim/controllers/content.py View File

334
         return tg.url('/workspaces/{}/folders/{}/pages/{}')
334
         return tg.url('/workspaces/{}/folders/{}/pages/{}')
335
 
335
 
336
     @property
336
     @property
337
+    def _err_url(self):
338
+        return tg.url('/workspaces/{}/folders/{}/pages/{}')
339
+
340
+    @property
337
     def _parent_url(self):
341
     def _parent_url(self):
338
         return tg.url('/workspaces/{}/folders/{}')
342
         return tg.url('/workspaces/{}/folders/{}')
339
 
343