diff --git a/wiki/auth/anonymous_user.py b/wiki/auth/anonymous_user.py index 3faddee2..2f0d64bf 100644 --- a/wiki/auth/anonymous_user.py +++ b/wiki/auth/anonymous_user.py @@ -50,7 +50,7 @@ class AnonymousAuth(BaseAuth): return user_obj, True p = urlparse.urlparse(request.url) - # Prevent preference edition when anonymous + # Prevent preference edition and quicklink when anonymous if action == "userprefs" or action == "quicklink": url = urlparse.urlunparse(('https', p.netloc, p.path, "", "", "")) request.http_redirect(url)