diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2011-10-21 17:22:48 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2011-10-21 17:22:48 +0000 |
commit | a24d340ca4f3dd87135da8341e2c74542d907668 (patch) | |
tree | 6a1a6633486575ea0474fc069f7f0c2522262519 /libs/web | |
parent | 2f4c6d83181e1e10ef7f16b42a7bbf9d797ccb39 (diff) |
libs/web: fix package name in error suggestion
Diffstat (limited to 'libs/web')
-rw-r--r-- | libs/web/luasrc/dispatcher.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/web/luasrc/dispatcher.lua b/libs/web/luasrc/dispatcher.lua index f277501f8..9bfa413cf 100644 --- a/libs/web/luasrc/dispatcher.lua +++ b/libs/web/luasrc/dispatcher.lua @@ -399,7 +399,7 @@ function dispatch(request) local root = node() if not root or not root.target then error404("No root node was registered, this usually happens if no module was installed.\n" .. - "Install luci-admin-full and retry. " .. + "Install luci-mod-admin-full and retry. " .. "If the module is already installed, try removing the /tmp/luci-indexcache file.") else error404("No page is registered at '/" .. table.concat(request, "/") .. "'.\n" .. |