Fix call to unexported function nodetree_default:get_subnodes/2

SVN Revision: 1529
This commit is contained in:
Christophe Romain 2008-08-18 10:29:04 +00:00
parent 2be5cb9b50
commit 7b1547b2bd
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2008-08-18 Christophe Romain <christophe.romain@process-one.net>
* src/mod_pubsub/node_dispatch.erl: Fix call to unexported function
nodetree_default:get_subnodes/2
2008-08-17 Badlop <badlop@process-one.net>
* contrib/extract_translations/extract_translations.erl: Use

View File

@ -129,7 +129,7 @@ publish_item(Host, Node, Publisher, Model, MaxItems, ItemId, Payload) ->
node_default:publish_item(
Host, SubNode, Publisher, Model,
MaxItems, ItemId, Payload)
end, nodetree_default:get_subnodes(Host, Node)).
end, nodetree_default:get_subnodes(Host, Node, Publisher)).
remove_extra_items(_Host, _Node, _MaxItems, ItemIds) ->
{result, {ItemIds, []}}.