diff options
author | Ted Trask <ttrask01@yahoo.com> | 2013-05-30 20:08:26 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2013-05-30 20:08:26 +0000 |
commit | 2d34b61db1eb8f4f59ee22907c98a911eddcee9f (patch) | |
tree | 6ab9c6cafcc83083c0a43603613e8c590f92895e /app/acf-util/password-controller.lua | |
parent | d2dcdd318768ba7e0ddc06afee908c85ba8b98cd (diff) | |
download | acf-core-2d34b61db1eb8f4f59ee22907c98a911eddcee9f.tar.bz2 acf-core-2d34b61db1eb8f4f59ee22907c98a911eddcee9f.tar.xz |
Change logon/logout action to logon/logoff and standardize on logon/off instead of login/out
Diffstat (limited to 'app/acf-util/password-controller.lua')
-rw-r--r-- | app/acf-util/password-controller.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/acf-util/password-controller.lua b/app/acf-util/password-controller.lua index c3d8695..6518249 100644 --- a/app/acf-util/password-controller.lua +++ b/app/acf-util/password-controller.lua @@ -18,7 +18,7 @@ function editme(self) local tmp1, tmp2 = roles.get_roles_perm(self, value.value.roles.value) table.sort(tmp2) for i,h in ipairs(tmp2) do - if h ~= "/acf-util/logon/logout" and h ~= "/acf-util/logon/logon" then + if h ~= "/acf-util/logon/logoff" and h ~= "/acf-util/logon/logon" then value.value.home.option[#value.value.home.option+1] = h end end |