瀏覽代碼

[fix] render.py for home

version-14
Rushabh Mehta 8 年之前
父節點
當前提交
df66dfe941
共有 1 個文件被更改,包括 3 次插入2 次删除
  1. +3
    -2
      frappe/website/render.py

+ 3
- 2
frappe/website/render.py 查看文件

@@ -23,8 +23,9 @@ class PageNotFoundError(Exception): pass

def render(path=None, http_status_code=None):
"""render html page"""
path = resolve_path(path or frappe.local.request.path)
path = path.strip('/ ')
if not path:
path = frappe.local.request.path
path = resolve_path(path.strip('/ '))
data = None

# if in list of already known 404s, send it


Loading…
取消
儲存