diff options
author | Steven Barth <steven@midlink.org> | 2008-08-16 21:40:08 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-08-16 21:40:08 +0000 |
commit | 8b2e83f2d5650acfe2b15a44cb125e28867beb98 (patch) | |
tree | b8545be6a203699cec49c7c4b88d55bf0cae6dcc /modules/admin-full | |
parent | f5046bbca7a88493b9297791107d0eedeb8c55cc (diff) |
modules/admin-full: Fixed package management page
Diffstat (limited to 'modules/admin-full')
-rw-r--r-- | modules/admin-full/luasrc/controller/admin/system.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/admin-full/luasrc/controller/admin/system.lua b/modules/admin-full/luasrc/controller/admin/system.lua index 6f2428000..21f804a7a 100644 --- a/modules/admin-full/luasrc/controller/admin/system.lua +++ b/modules/admin-full/luasrc/controller/admin/system.lua @@ -86,7 +86,7 @@ function action_packages() -- Package info - local info = luci.model.ipkg.info("*"..query.."*") + local info = luci.model.ipkg.info(query and "*"..query.."*") info = info or {} local pkgs = {} |