Fix config mode not redirecting to welcome page

This commit is contained in:
Matthias Schiffer 2012-09-18 10:50:35 +02:00
parent e771b8777a
commit 4c11130c8c
1 changed files with 2 additions and 4 deletions

View File

@ -6,10 +6,8 @@ function index()
if uci_state:get_first("config_mode", "wizard", "running", "0") == "1" then
local root = node()
if not root.target then
root.target = alias("wizard", "welcome")
root.index = true
end
root.target = alias("wizard", "welcome")
root.index = true
end
end