Software /
code /
prosody
Changeset
2448:542335c8a5bc
mod_register: Return a <not-acceptable/> error on empty usernames (thanks Neustradamus).
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Mon, 11 Jan 2010 17:52:28 +0500 |
parents | 2447:9eb539222f22 |
children | 2449:678ca4e9a479 |
files | plugins/mod_register.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_register.lua Mon Jan 11 10:13:02 2010 +0000 +++ b/plugins/mod_register.lua Mon Jan 11 17:52:28 2010 +0500 @@ -141,7 +141,7 @@ username = nodeprep(table.concat(username)); password = table.concat(password); local host = module.host; - if not username then + if not username or username == "" then session.send(st.error_reply(stanza, "modify", "not-acceptable", "The requested username is invalid.")); elseif usermanager_user_exists(username, host) then session.send(st.error_reply(stanza, "cancel", "conflict", "The requested username already exists."));