diff options
author | Dirk Brenken <dev@brenken.org> | 2018-05-30 21:56:50 +0200 |
---|---|---|
committer | Dirk Brenken <dev@brenken.org> | 2018-05-31 07:28:51 +0200 |
commit | d8f2f24a5bc0f5d9098149c4e2579fd1cd070f61 (patch) | |
tree | b7f26eb5d2dd694c9b86e03f59006ed481db08f3 /applications/luci-app-lxc/luasrc/controller/lxc.lua | |
parent | d9b6c5dd781fec6603e7941b72774b9af140e858 (diff) |
luci-app-lxc: fix "plain-vanilla" integration, part 3
* migrate JS generated HTML tables to divs
* remove (most of) the inline styles
* various markup cleanups
That's the final part ... hopefully it's now in a more usable &
maintainable state.
Signed-off-by: Dirk Brenken <dev@brenken.org>
Diffstat (limited to 'applications/luci-app-lxc/luasrc/controller/lxc.lua')
-rw-r--r-- | applications/luci-app-lxc/luasrc/controller/lxc.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-app-lxc/luasrc/controller/lxc.lua b/applications/luci-app-lxc/luasrc/controller/lxc.lua index f14606ee81..c7fe63f87b 100644 --- a/applications/luci-app-lxc/luasrc/controller/lxc.lua +++ b/applications/luci-app-lxc/luasrc/controller/lxc.lua @@ -131,7 +131,7 @@ end function lxc_configuration_set(lxc_name) luci.http.prepare_content("text/plain") - local lxc_configuration = luci.http.formvalue("lxc_configuration") + local lxc_configuration = luci.http.formvalue("lxc_conf") if lxc_configuration == nil then util.perror("lxc error: config formvalue is empty") return |