mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-20 16:15:59 +01:00
* src/mod_roster.erl: Fixed "from" attribute in roster pushes
* src/mod_roster_odbc.erl: Likewise SVN Revision: 1213
This commit is contained in:
parent
22a5bce9de
commit
8283a9faf3
@ -1,3 +1,8 @@
|
||||
2008-02-29 Alexey Shchepin <alexey@process-one.net>
|
||||
|
||||
* src/mod_roster.erl: Fixed "from" attribute in roster pushes
|
||||
* src/mod_roster_odbc.erl: Likewise
|
||||
|
||||
2008-02-28 Badlop <badlop@process-one.net>
|
||||
|
||||
* src/ejabberd_app.erl (prep_stop): Stop modules when stopping
|
||||
|
@ -459,7 +459,7 @@ process_subscription(Direction, User, Server, JID1, Type, Reason) ->
|
||||
ok;
|
||||
true ->
|
||||
push_item(User, Server,
|
||||
jlib:make_jid("", Server, ""), Item)
|
||||
jlib:make_jid(User, Server, ""), Item)
|
||||
end,
|
||||
true;
|
||||
none ->
|
||||
|
@ -520,7 +520,7 @@ process_subscription(Direction, User, Server, JID1, Type, Reason) ->
|
||||
ok;
|
||||
true ->
|
||||
push_item(User, Server,
|
||||
jlib:make_jid("", Server, ""), Item)
|
||||
jlib:make_jid(User, Server, ""), Item)
|
||||
end,
|
||||
true;
|
||||
none ->
|
||||
|
Loading…
Reference in New Issue
Block a user