diff options
author | Brion Vibber <brion@pobox.com> | 2010-09-21 16:19:02 -0700 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-09-21 16:19:02 -0700 |
commit | 0ff28ac8e07994267b3e7b83fd82690e33ba222b (patch) | |
tree | 8477b240645d34c44f07fb830dd90adfa461387e /plugins | |
parent | 8091c4d2913b9bbfa24235ad8d263ae324e56765 (diff) |
Fix for replies in Yammer import
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/YammerImport/yammerimporter.php | 6 |
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']); |