소스 검색

Fix: View right for non existing startpage

master
Dirk Alders 1 개월 전
부모
커밋
cc585eaaa0
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      pages/views.py

+ 1
- 1
pages/views.py 파일 보기

@@ -53,7 +53,7 @@ def page(request, rel_path):
53 53
     title = rel_path.split("/")[-1]
54 54
     #
55 55
     acc = access_control(request, rel_path)
56
-    if acc.may_read():
56
+    if acc.may_read() or (p is None and rel_path == config.STARTPAGE):
57 57
         if p is None or p.deleted:
58 58
             if rel_path == config.STARTPAGE:
59 59
                 page_content = mycreole.render_simple(SUCCESS_PAGE)

Loading…
취소
저장