diff options
author | friendica <info@friendica.com> | 2015-01-11 14:41:33 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-01-11 14:41:33 -0800 |
commit | 0259051a87233f32efaaa7f0b4dafc71c2f3c13d (patch) | |
tree | 3d222e3a66d14d5e4477304789e292939e3b808e /include/ConversationObject.php | |
parent | b018b39e6473b74599a9cefe1ed8bae923424ff4 (diff) | |
download | volse-hubzilla-0259051a87233f32efaaa7f0b4dafc71c2f3c13d.tar.gz volse-hubzilla-0259051a87233f32efaaa7f0b4dafc71c2f3c13d.tar.bz2 volse-hubzilla-0259051a87233f32efaaa7f0b4dafc71c2f3c13d.zip |
basic backend work for creating consensus items
Diffstat (limited to 'include/ConversationObject.php')
-rw-r--r-- | include/ConversationObject.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ConversationObject.php b/include/ConversationObject.php index a02ba102f..7dc4c8c19 100644 --- a/include/ConversationObject.php +++ b/include/ConversationObject.php @@ -197,7 +197,7 @@ class Conversation extends BaseObject { * _ The data requested on success * _ false on failure */ - public function get_template_data($alike, $dlike) { + public function get_template_data($conv_responses) { $result = array(); foreach($this->threads as $item) { @@ -206,7 +206,7 @@ class Conversation extends BaseObject { $item_data = $this->prepared_item; } else { - $item_data = $item->get_template_data($alike, $dlike); + $item_data = $item->get_template_data($conv_responses); } if(!$item_data) { logger('[ERROR] Conversation::get_template_data : Failed to get item template data ('. $item->get_id() .').', LOGGER_DEBUG); |