diff options
author | Ted Trask <ttrask01@yahoo.com> | 2012-04-22 12:10:57 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2012-04-22 12:10:57 +0000 |
commit | a9a33b02fee4f62e1ccc885fe29cbf41fb957204 (patch) | |
tree | 77d4ad008babdf64bea13216817b6f9a8b8f5141 /app/acf-util/password-model.lua | |
parent | 733028a932feef66d0d2e93ff909ceccc63a4eb3 (diff) | |
download | acf-core-a9a33b02fee4f62e1ccc885fe29cbf41fb957204.tar.bz2 acf-core-a9a33b02fee4f62e1ccc885fe29cbf41fb957204.tar.xz |
Updated password and skins for latest handle_form changes
Diffstat (limited to 'app/acf-util/password-model.lua')
-rw-r--r-- | app/acf-util/password-model.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/acf-util/password-model.lua b/app/acf-util/password-model.lua index 2a76c99..b9cafb9 100644 --- a/app/acf-util/password-model.lua +++ b/app/acf-util/password-model.lua @@ -164,8 +164,8 @@ function get_users(self) return cfe({ type="group", value=users, label="User Configs" }) end -function get_delete_user(self, user) - local userid = cfe({ label="User id", value=user or "" }) +function get_delete_user(self, clientdata) + local userid = cfe({ label="User id", value=clientdata.userid or "" }) return cfe({ type="group", value={userid=userid}, label="Delete User" }) end |