OBS: Run migrate! Made exit's destination into a database field for performance. Fixed a too greedy @reload that caused ContentTypes to loose information. Resolves issue 157.

Migrate with: "python manage.py migrate"
This commit is contained in:
Griatch 2011-04-08 23:10:04 +00:00
parent 0cff54f136
commit 6c53ec2bdb
11 changed files with 227 additions and 84 deletions

View file

@ -215,7 +215,7 @@ class SystemUseExit(MuxCommand):
exi = caller.search(exit_name)
if not exi:
return
destination = exi.attr('_destination')
destination = exi.destination
if not destination:
return
if exit.access(caller, 'traverse'):