summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrion Vibber <brion@pobox.com>2010-09-21 16:19:02 -0700
committerBrion Vibber <brion@pobox.com>2010-09-21 16:19:02 -0700
commit0ff28ac8e07994267b3e7b83fd82690e33ba222b (patch)
tree8477b240645d34c44f07fb830dd90adfa461387e
parent8091c4d2913b9bbfa24235ad8d263ae324e56765 (diff)
Fix for replies in Yammer import
-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']);