diff options
author | Steven Barth <steven@midlink.org> | 2008-07-29 15:36:17 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-07-29 15:36:17 +0000 |
commit | b93f0acce6fe697ff2b7c5b571d4ccedaa244bcd (patch) | |
tree | 6c7a065bd30225cf594e468a3de1f28e3c69dfbb | |
parent | f8f4fe752307e1d0c042496b642aa691589c2a5f (diff) |
Fixed last commit
-rw-r--r-- | themes/fledermaus/luasrc/view/themes/fledermaus/header.htm | 2 | ||||
-rw-r--r-- | themes/openwrt.org/luasrc/view/themes/openwrt.org/header.htm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/themes/fledermaus/luasrc/view/themes/fledermaus/header.htm b/themes/fledermaus/luasrc/view/themes/fledermaus/header.htm index 30aa57d86..db943709d 100644 --- a/themes/fledermaus/luasrc/view/themes/fledermaus/header.htm +++ b/themes/fledermaus/luasrc/view/themes/fledermaus/header.htm @@ -147,7 +147,7 @@ end %> <div><%:config%> <% if ucic > 0 then %> - <% submenu(category .. "/uci/", tree.nodes[category].nodes["uci"]) -%> + <% submenu("/" .. category .. "/uci/", tree.nodes[category].nodes["uci"]) -%> <% else %> <ul> <li><%:changes%>: 0</li> diff --git a/themes/openwrt.org/luasrc/view/themes/openwrt.org/header.htm b/themes/openwrt.org/luasrc/view/themes/openwrt.org/header.htm index 23b28a14c..09ef09ec7 100644 --- a/themes/openwrt.org/luasrc/view/themes/openwrt.org/header.htm +++ b/themes/openwrt.org/luasrc/view/themes/openwrt.org/header.htm @@ -174,7 +174,7 @@ end <div> <% if ucic > 0 then %> <a class="warning" href="<%=controller%>/<%=category%>/uci/changes"><%:unsavedchanges%>: <%=ucic%></a> - <% submenu(category .. "/uci/", tree.nodes[category].nodes["uci"]) -%> + <% submenu("/" .. category .. "/uci/", tree.nodes[category].nodes["uci"]) -%> <% else %> <a href="#"><%:changes%>: 0</a> <% end %> |