diff options
author | Christophe Romain <christophe.romain@process-one.net> | 2009-08-27 09:44:03 +0000 |
---|---|---|
committer | Christophe Romain <christophe.romain@process-one.net> | 2009-08-27 09:44:03 +0000 |
commit | 054ad379ceb6c96f6c2cdaa17697e41b81727979 (patch) | |
tree | 440b514e3fa113c7329530be18aaa30bd4c0c533 | |
parent | fix issue with RSM filtering (diff) |
typo fix
SVN Revision: 2549
-rw-r--r-- | src/mod_pubsub/mod_pubsub_odbc.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mod_pubsub/mod_pubsub_odbc.erl b/src/mod_pubsub/mod_pubsub_odbc.erl index 31ff479c6..bf8ece3e7 100644 --- a/src/mod_pubsub/mod_pubsub_odbc.erl +++ b/src/mod_pubsub/mod_pubsub_odbc.erl @@ -1093,7 +1093,7 @@ iq_pubsub(Host, ServerHost, From, IQType, SubEl, Lang, Access, Plugins) -> iq_pubsub_owner(Host, ServerHost, From, IQType, SubEl, Lang) -> {xmlelement, _, _, SubEls} = SubEl, - Action = lists:filter(fun({xmlelement, "set", _, _}) -> false + Action = lists:filter(fun({xmlelement, "set", _, _}) -> false; (_) -> true end, xml:remove_cdata(SubEls)), case Action of |