diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-06-27 14:58:06 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-06-27 14:58:06 +0200 |
commit | ac860a4d14c9aa9580753fb0c832199fcb24ec95 (patch) | |
tree | f6429135aa9a49e6eb3ec904024a52ae926ef19c /ishtar_common/urls.py | |
parent | 82106b7a7a7330b486e48702aa4315299f47d322 (diff) | |
download | Ishtar-ac860a4d14c9aa9580753fb0c832199fcb24ec95.tar.bz2 Ishtar-ac860a4d14c9aa9580753fb0c832199fcb24ec95.zip |
Fix cache menu issue
Diffstat (limited to 'ishtar_common/urls.py')
-rw-r--r-- | ishtar_common/urls.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ishtar_common/urls.py b/ishtar_common/urls.py index f9f342ce3..4ba551857 100644 --- a/ishtar_common/urls.py +++ b/ishtar_common/urls.py @@ -129,7 +129,7 @@ urlpatterns = [ menu = Menu(None) menu.init() actions = [] -for section in menu.childs: +for section in menu.ref_childs: for menu_item in section.childs: if hasattr(menu_item, 'childs'): for menu_subitem in menu_item.childs: |