diff options
author | Kim Alvefur <zash@zash.se> | 2014-07-03 17:53:24 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2014-07-03 17:53:24 +0200 |
commit | dd05fccf9da99cd45f7d0a11fe01d5f4e8680c05 (patch) | |
tree | 46ddc02a89a6d14b07fbcea234e2e3936de72a4c | |
parent | 6b1e013d0302f406b66b3ab9ce7dd83d42baf978 (diff) | |
download | prosody-dd05fccf9da99cd45f7d0a11fe01d5f4e8680c05.tar.gz prosody-dd05fccf9da99cd45f7d0a11fe01d5f4e8680c05.zip |
mod_register: get_child_text! (thanks Lloyd)
-rw-r--r-- | plugins/mod_register.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mod_register.lua b/plugins/mod_register.lua index 141a4997..3d7a068c 100644 --- a/plugins/mod_register.lua +++ b/plugins/mod_register.lua @@ -115,8 +115,8 @@ local function handle_registration_stanza(event) module:log("info", "User removed their account: %s@%s", username, host); module:fire_event("user-deregistered", { username = username, host = host, source = "mod_register", session = session }); else - local username = nodeprep(query:get_child("username"):get_text()); - local password = query:get_child("password"):get_text(); + local username = nodeprep(query:get_child_text("username")); + local password = query:get_child_text("password"); if username and password then if username == session.username then if usermanager_set_password(username, password, session.host) then |