From: Evan Prodromou Date: Wed, 9 Jul 2008 07:29:53 +0000 (-0400) Subject: format replyto name correctly X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=fcf376e90fd643f696b901ab8384cc038d41db04;p=quix0rs-gnu-social.git format replyto name correctly darcs-hash:20080709072953-84dde-5ebea95c28e535c8bdd5255354910a6f92903b92.gz --- diff --git a/actions/newnotice.php b/actions/newnotice.php index a7a3f8362c..aabf5ccd77 100644 --- a/actions/newnotice.php +++ b/actions/newnotice.php @@ -98,7 +98,7 @@ class NewnoticeAction extends Action { $replyto = $this->trimmed('replyto'); $profile = Profile::staticGet('nickname', $replyto); if ($profile) { - $content = "@$profile "; + $content = '@' . $profile->nickname . ' '; } } common_show_header(_t('New notice'), NULL, $content,