diff options
author | Alexey Shchepin <alexey@process-one.net> | 2004-02-10 20:50:41 +0000 |
---|---|---|
committer | Alexey Shchepin <alexey@process-one.net> | 2004-02-10 20:50:41 +0000 |
commit | b0b4b9a903ad4f98c4070ca721f16f1e2cfcfd5b (patch) | |
tree | c119a67169c82099c20da47ede029e436d94be17 /src/mod_pubsub/mod_pubsub.erl | |
parent | * src/ejabberd_ctl.erl: Added command for log reopening (diff) |
* src/msgs/ru.msg: Updated (thanks to Sergei Golovan)
* src/mod_irc/mod_irc.erl: Now uses "ejabber:config" namespace
(thanks to Sergei Golovan)
* src/mod_disco.erl: Fixed disco category and type (thanks to
Sergei Golovan)
* src/mod_pubsub/mod_pubsub.erl: Likewise
* src/jlib.hrl: Added "ejabber:config" namespace (thanks to Sergei
Golovan)
SVN Revision: 202
Diffstat (limited to 'src/mod_pubsub/mod_pubsub.erl')
-rw-r--r-- | src/mod_pubsub/mod_pubsub.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mod_pubsub/mod_pubsub.erl b/src/mod_pubsub/mod_pubsub.erl index 98125e0c..75c6c10d 100644 --- a/src/mod_pubsub/mod_pubsub.erl +++ b/src/mod_pubsub/mod_pubsub.erl @@ -213,8 +213,8 @@ iq_disco_info(SNode) -> case Node of [] -> [{xmlelement, "identity", - [{"category", "service"}, - {"type", "pubsub"}, + [{"category", "pubsub"}, + {"type", "generic"}, {"name", "ejabberd/mod_pubsub"}], []}, %{xmlelement, "feature", [{"var", ?NS_REGISTER}], []}, {xmlelement, "feature", [{"var", ?NS_PUBSUB}], []}, |