diff options
author | Alexey Shchepin <alexey@process-one.net> | 2005-04-17 21:39:41 +0000 |
---|---|---|
committer | Alexey Shchepin <alexey@process-one.net> | 2005-04-17 21:39:41 +0000 |
commit | e46b28f27ffe43c1f9466d1774eb35fc80a9ce09 (patch) | |
tree | 3827724bd7c505cc3603f1b13ac8d8dfd9210f22 /src/mod_muc | |
parent | Merged Process One contribution (Virtual Hosting) (diff) |
Cleanup
SVN Revision: 309
Diffstat (limited to 'src/mod_muc')
-rw-r--r-- | src/mod_muc/mod_muc_room.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mod_muc/mod_muc_room.erl b/src/mod_muc/mod_muc_room.erl index 0a90faf3c..228f49608 100644 --- a/src/mod_muc/mod_muc_room.erl +++ b/src/mod_muc/mod_muc_room.erl @@ -808,8 +808,8 @@ filter_presence({xmlelement, "presence", Attrs, Els}) -> case El of {xmlcdata, _} -> false; - {xmlelement, Name1, _Attrs1, _Els1} -> - XMLNS = xml:get_attr_s("xmlns", Attrs), + {xmlelement, Name1, Attrs1, _Els1} -> + XMLNS = xml:get_attr_s("xmlns", Attrs1), case {Name1, XMLNS} of {"show", ""} -> true; |