diff options
author | Christophe Romain <christophe.romain@process-one.net> | 2011-09-22 20:49:56 +0200 |
---|---|---|
committer | Christophe Romain <christophe.romain@process-one.net> | 2011-09-22 20:49:56 +0200 |
commit | fa08db7091f5ba904f337e30ec7c9a46857eb36d (patch) | |
tree | e1cb4c366ae4c4c6ac90989a07f8e4f0e189ffd2 /src | |
parent | ejabberdctl doesn't support parameters with blankspaces (EJAB-1458) (diff) |
fix broken PEP after EJAB-1498 (thanks to Karim Gemayel)
Diffstat (limited to 'src')
-rw-r--r-- | src/mod_pubsub/node_pep.erl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mod_pubsub/node_pep.erl b/src/mod_pubsub/node_pep.erl index 586d5e753..d6f06f56b 100644 --- a/src/mod_pubsub/node_pep.erl +++ b/src/mod_pubsub/node_pep.erl @@ -178,8 +178,7 @@ create_node_permission(Host, ServerHost, _NodeId, _ParentNodeId, #jid{node = U, ). create_node(NodeIdx, JID) -> - {result, _} = node_flat:create_node(NodeIdx, JID), - {result, []}. + node_flat:create_node(NodeIdx, JID). % case node_flat:create_node(NodeIdx, JID) of % {result, _} -> {result, []}; % Error -> Error |