From 0ff28ac8e07994267b3e7b83fd82690e33ba222b Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 21 Sep 2010 16:19:02 -0700 Subject: [PATCH] Fix for replies in Yammer import --- plugins/YammerImport/yammerimporter.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/YammerImport/yammerimporter.php b/plugins/YammerImport/yammerimporter.php index 15970d0729..ae0037ffee 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']);