From 9f785f6734919a66baba6c116647695f466b9330 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 21 Jun 2011 11:32:26 -0400 Subject: [PATCH] Fix addressees when drop-down for a single user is used --- lib/toselector.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/toselector.php b/lib/toselector.php index f131147dd6..ba9593f0b3 100644 --- a/lib/toselector.php +++ b/lib/toselector.php @@ -146,7 +146,7 @@ class ToSelector extends Widget break; case 'profile': $profile = Profile::staticGet('id', $value); - $options['replies'] = $profile->getUri(); + $options['replies'] = array($profile->getUri()); if ($private) { $options['scope'] = Notice::ADDRESSEE_SCOPE; }