Commit 42963458 authored by Romain Courteaud's avatar Romain Courteaud

erp5_web_renderjs_ui: try simplifying web section retrieval

parent a2cf938e
......@@ -10,11 +10,7 @@ response.setBase(None)
response.setHeader("Access-Control-Allow-Origin", "*")
web_page = context
web_section = REQUEST.get("current_web_section")
if web_section is None:
parent_value = context.getParentValue()
if parent_value.getPortalType() == "Web Section":
web_section = parent_value
web_section = context.getWebSectionValue()
if REQUEST.getHeader('If-Modified-Since', '') == web_page.getModificationDate().rfc822():
response.setStatus(304)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment