diff options
author | Ted Trask <ttrask01@yahoo.com> | 2008-04-30 20:36:02 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2008-04-30 20:36:02 +0000 |
commit | de2694e907a97dfb6a017509d2589c186dc56e72 (patch) | |
tree | d39a4a2e71007d25457a1d32fde55a18a634bc44 /syslog-controller.lua | |
parent | 3240695ed965b30d68d771b9d1f2139918c1b7fc (diff) | |
download | acf-alpine-baselayout-de2694e907a97dfb6a017509d2589c186dc56e72.tar.bz2 acf-alpine-baselayout-de2694e907a97dfb6a017509d2589c186dc56e72.tar.xz |
Modified cfe, removing option, errtxt, and name, and adding label - This may break things.
Rewrote password module, adding model
Modified authenticator to make password module work
git-svn-id: svn://svn.alpinelinux.org/acf/alpine-baselayout/trunk@1052 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'syslog-controller.lua')
-rw-r--r-- | syslog-controller.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/syslog-controller.lua b/syslog-controller.lua index f0fb343..b592672 100644 --- a/syslog-controller.lua +++ b/syslog-controller.lua @@ -100,7 +100,7 @@ function config(self) end -- Disable management buttons if there exist errors in the config for k,v in pairs(config) do - if (config[k]["errtxt"] ~= "") then + if (config[k]["errtxt"]) then disablestart = "yes" disablestop = "yes" disablerestart = "yes" @@ -160,7 +160,7 @@ function expert(self) end -- Disable management buttons if there exist errors in the config for k,v in pairs(config) do - if (config[k]["errtxt"] ~= "") then + if (config[k]["errtxt"]) then disablestart = "yes" disablestop = "yes" disablerestart = "yes" |