I think this is a quite subtle bug. It's caused because auth only
instantiates Wiki on the first call to auth.wiki. Later when you make a
second call with extra set it doesn't do anything. To fix it open
gluon/tools.py in your web2py installation and then where it says:
else:
self._wiki.env.update(env or {})
Change to:
else:
self._wiki.settings.extra = extra
self._wiki.env.update(env or {})
I'll make a pull request to fix it soon.
--
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
---
You received this message because you are subscribed to the Google Groups
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.