Django == 1.5.4
Django-CMS == 2.4.2
Page flag "login_required" didn't work. It works only in main page, but in ALL inner pages it didn't. There is no any code modification in cms plugin.
"login_required" is checking in only one file : /site-packages/cms/views.py in line 136:
# permission checks
if page.login_required and not request.user.is_authenticated():
return redirect_to_login(urlquote(request.get_full_path()), settings.LOGIN_URL)
I set
print "check"
above it and as was expected - it prints only in main page...
Any ideas what may be the problem ?