* src/web/ejabberd_web_admin.erl: More flexible parsing the shared

roster members list from the configuration form.

SVN Revision: 582
This commit is contained in:
Mickaël Rémond 2006-07-05 08:09:35 +00:00
parent 2b46e3eaa7
commit 230d66b168
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2006-07-05 Mickael Remond <mickael.remond@process-one.net>
* src/web/ejabberd_web_admin.erl: More flexible parsing the shared
roster members list from the configuration form.
2006-06-19 Alexey Shchepin <alexey@sevcom.net>
* src/ejabberd_s2s_in.erl: Removed needless check for xmlns:db

View File

@ -2582,7 +2582,7 @@ shared_roster_group_parse_query(Host, Group, Query) ->
OldMembers = mod_shared_roster:get_group_explicit_users(
Host, Group),
SJIDs = string:tokens(SMembers, "\r\n"),
SJIDs = string:tokens(SMembers, ", \r\n"),
NewMembers =
lists:foldl(
fun(_SJID, error) -> error;