treewide: fix query arguments to admin/system/opkg

Right now the handler only recognizes "query=xx" argument, others will
be ignored.

Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
This commit is contained in:
Yousong Zhou 2019-01-01 04:58:48 +00:00
parent 85b67625f7
commit 7908b2b71c
4 changed files with 4 additions and 4 deletions

View file

@ -99,7 +99,7 @@ else
o.write = function()
return luci.http.redirect(
luci.dispatcher.build_url("admin/system/opkg") ..
"?submit=1&install=iptables-mod-conntrack-extra"
"?query=iptables-mod-conntrack-extra"
)
end
end

View file

@ -200,7 +200,7 @@ function option_install_package(s, tab)
function p_install.write()
return luci.http.redirect(
luci.dispatcher.build_url("admin/system/opkg") ..
"?submit=1&install=%s" % opkg_package
"?query=%s" % opkg_package
)
end
end

View file

@ -113,7 +113,7 @@ L.poll(5, L.url('admin/network/iface_status', networks.join(',')), null,
var e = document.getElementById(ifc.id + '-ifc-edit');
if (e) e.disabled = true;
var link = L.url('admin/system/opkg') + '?query=luci-proto&display=available';
var link = L.url('admin/system/opkg') + '?query=luci-proto';
L.dom.content(d, [
E('em', _('Unsupported protocol type.')), E('br'),
E('a', { href: link }, _('Install protocol extensions...'))

View file

@ -227,7 +227,7 @@ if not net:is_installed() then
function p_install.write()
return luci.http.redirect(
luci.dispatcher.build_url("admin/system/opkg") ..
"?submit=1&install=%s" % net:opkg_package()
"?query=%s" % net:opkg_package()
)
end
end