diff options
author | Dirk Brenken <dev@brenken.org> | 2018-05-31 08:50:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-31 08:50:07 +0200 |
commit | 5452cc214ed5ef9b6a25711754ed97384166f924 (patch) | |
tree | 38069eb1614e0b2a201c2e6980d98c12bc4f041b /applications/luci-app-lxc/luasrc/controller/lxc.lua | |
parent | 7bd1bcaf3064a2c125cfe7976eacb3697d46f477 (diff) | |
parent | d8f2f24a5bc0f5d9098149c4e2579fd1cd070f61 (diff) |
Merge pull request #1845 from dibdot/lxc_fix
luci-app-lxc: fix "plain-vanilla" integration, part 3
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 |