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 | 01b960044e60a7b544e83640a3c1e68fb06b15fd (patch) | |
tree | 46ddc02a89a6d14b07fbcea234e2e3936de72a4c | |
parent | 7ef57da0477d5d0cad42f85c3a3027d35eae0968 (diff) | |
download | prosody-01b960044e60a7b544e83640a3c1e68fb06b15fd.tar.gz prosody-01b960044e60a7b544e83640a3c1e68fb06b15fd.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 |