diff options
author | Alexey Shchepin <alexey@process-one.net> | 2007-02-22 07:39:05 +0000 |
---|---|---|
committer | Alexey Shchepin <alexey@process-one.net> | 2007-02-22 07:39:05 +0000 |
commit | 39c1eb4be7069eb04d83567735aa4f48f8fe4ff0 (patch) | |
tree | c50ec8abac5a1f00f36999ecf2d3309c5e4a7f05 | |
parent | * src/mod_proxy65/mod_proxy65_sm.erl: Cluster support (thanks to (diff) |
* src/mod_pubsub/mod_pubsub.erl: Bugfix
SVN Revision: 737
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | src/mod_pubsub/mod_pubsub.erl | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,7 @@ 2007-02-22 Alexey Shchepin <alexey@sevcom.net> + * src/mod_pubsub/mod_pubsub.erl: Bugfix + * src/mod_proxy65/mod_proxy65_sm.erl: Cluster support (thanks to Evgeniy Khramtsov) diff --git a/src/mod_pubsub/mod_pubsub.erl b/src/mod_pubsub/mod_pubsub.erl index d82d2d6f4..4b8a04677 100644 --- a/src/mod_pubsub/mod_pubsub.erl +++ b/src/mod_pubsub/mod_pubsub.erl @@ -78,7 +78,7 @@ start(Host, Opts) -> stop(Host) -> Proc = gen_mod:get_module_proc(Host, ?PROCNAME), gen_server:call(Proc, stop), - supervisor:stop_child(ejabberd_sup, Proc). + supervisor:delete_child(ejabberd_sup, Proc). delete_item(From, Node, ItemID) -> delete_item(get_host(), From, Node, ItemID). |