From 3d71278d8aa7531690f168b796c6b2e84dbdd8d5 Mon Sep 17 00:00:00 2001 From: Massimo Di Pierro Date: Tue, 12 Jun 2012 21:45:07 -0500 Subject: [PATCH] fixed bug in navbar link, thanks Anthony --- VERSION | 2 +- gluon/tools.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index f702230c..1ab8fddb 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.00.0 (2012-06-12 08:25:19) dev +Version 2.00.0 (2012-06-12 21:45:03) dev diff --git a/gluon/tools.py b/gluon/tools.py index bed6b623..aa6549ff 100644 --- a/gluon/tools.py +++ b/gluon/tools.py @@ -1221,7 +1221,7 @@ class Auth(object): if URL() == action: next = '' else: - next = '?_next='+urllib.quote(URL(args=request.args,vars=request.vars)) + next = '?_next='+urllib.quote(URL(args=request.args,vars=request.get_vars)) li_next = '?_next='+urllib.quote(self.settings.login_next) lo_next = '?_next='+urllib.quote(self.settings.logout_next)