themes/openwrt.org: add missing parentheses
r9311 introduced a bug which made the "password not set" warning disappear in all cases instead of just the intended ones. Now fixed.
This commit is contained in:
parent
631b80911b
commit
97470c05f6
1 changed files with 1 additions and 1 deletions
|
@ -173,7 +173,7 @@ if tree.nodes[category] and tree.nodes[category].ucidata then
|
||||||
</div>
|
</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
|
|
||||||
<%- if luci.sys.process.info("uid") == 0 and luci.sys.user.getuser("root") and not luci.sys.user.getpasswd("root") and not category=="failsafe" then -%>
|
<%- if luci.sys.process.info("uid") == 0 and luci.sys.user.getuser("root") and not luci.sys.user.getpasswd("root") and ( category=="failsafe" ) then -%>
|
||||||
<div class="errorbox">
|
<div class="errorbox">
|
||||||
<strong><%:No password set!%></strong><br />
|
<strong><%:No password set!%></strong><br />
|
||||||
<%:There is no password set on this router. Please configure a root password to protect the web interface and enable SSH.%><br />
|
<%:There is no password set on this router. Please configure a root password to protect the web interface and enable SSH.%><br />
|
||||||
|
|
Loading…
Reference in a new issue