Hello, Found an issue in <u>kpax cms</u> and implemented a quick fix:
<b>Issue</b>: In <u>/kpax/controllers/access.py</u> redirect method called with an array instead of a string: line 47: if ch: redirect(request.vars.forward) <b>Fix</b>: line 47: if ch: redirect(request.vars.forward[0]) VoilĂ . Thanks a lot for web2py and all the goodies massimo... Mayou

