From: Evan Prodromou Date: Tue, 21 Jun 2011 15:32:26 +0000 (-0400) Subject: Fix addressees when drop-down for a single user is used X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=9f785f6734919a66baba6c116647695f466b9330;p=quix0rs-gnu-social.git Fix addressees when drop-down for a single user is used --- 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; }