summaryrefslogtreecommitdiff
path: root/plugins/YammerImport
diff options
context:
space:
mode:
authorBrion Vibber <brion@pobox.com>2010-09-21 16:19:02 -0700
committerBrion Vibber <brion@pobox.com>2010-09-28 07:44:21 -0700
commit271b553e6e46518d38049bdd834f158ddecec9c0 (patch)
tree173caeec738fd75f39fca218e686cf9d3a30ade2 /plugins/YammerImport
parent4b2089dc5228a6aeea656ea131bf6538a54a3870 (diff)
Fix for replies in Yammer import
Diffstat (limited to 'plugins/YammerImport')
-rw-r--r--plugins/YammerImport/yammerimporter.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/YammerImport/yammerimporter.php b/plugins/YammerImport/yammerimporter.php
index 15970d072..ae0037ffe 100644
--- a/plugins/YammerImport/yammerimporter.php
+++ b/plugins/YammerImport/yammerimporter.php
@@ -200,9 +200,9 @@ class YammerImporter
$options = array();
if ($item['replied_to_id']) {
- $replyto = $this->findImportedNotice($item['replied_to_id']);
- if ($replyto) {
- $options['replyto'] = $replyto;
+ $replyTo = $this->findImportedNotice($item['replied_to_id']);
+ if ($replyTo) {
+ $options['reply_to'] = $replyTo;
}
}
$options['created'] = $this->timestamp($item['created_at']);