浏览代码

added feature to sync static files

version-14
Rushabh Mehta 11 年前
父节点
当前提交
ca04d217ab
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      webnotes/webutils.py

+ 1
- 1
webnotes/webutils.py 查看文件

@@ -144,7 +144,7 @@ def build_sitemap_options(page_name):
where lft < %s and rgt > %s order by lft asc""", (sitemap_options.lft, sitemap_options.rgt), as_dict=True)

sitemap_options.children = webnotes.conn.sql("""select * from `tabWebsite Sitemap`
where parent_website_sitemap=%s and public_read=1""", (sitemap_options.page_name,), as_dict=True)
where parent_website_sitemap=%s and public_read=1""", (sitemap_options.name,), as_dict=True)
# determine templates to be used
if not sitemap_options.base_template_path:


正在加载...
取消
保存