diff options
author | Yousong Zhou <yszhou4tech@gmail.com> | 2018-12-29 14:10:10 +0000 |
---|---|---|
committer | Yousong Zhou <yszhou4tech@gmail.com> | 2019-01-01 05:04:49 +0000 |
commit | 85b67625f74031186b9ffa26c966082275796868 (patch) | |
tree | cd1d716f4f4edd1efe56b2cc7f3e217a5a03f44d /modules/luci-mod-network/luasrc/model | |
parent | 1893892581707fcd83e684a7a03dd6b5d3c2c3a2 (diff) |
treewide: fix redirecting to System->Software
By replacing url "admin/system/packages" with "admin/system/opkg"
Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
Diffstat (limited to 'modules/luci-mod-network/luasrc/model')
-rw-r--r-- | modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua b/modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua index bff859befa..05689d389b 100644 --- a/modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua +++ b/modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua @@ -226,7 +226,7 @@ if not net:is_installed() then function p_install.write() return luci.http.redirect( - luci.dispatcher.build_url("admin/system/packages") .. + luci.dispatcher.build_url("admin/system/opkg") .. "?submit=1&install=%s" % net:opkg_package() ) end |