diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-07-09 03:29:53 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-07-09 03:29:53 -0400 |
commit | fcf376e90fd643f696b901ab8384cc038d41db04 (patch) | |
tree | a1af8cd6d257b1b3d69134361e6b014703f152c6 /actions | |
parent | c8162f7d978c56c29a504302419b5569c0aa37f3 (diff) |
format replyto name correctly
darcs-hash:20080709072953-84dde-5ebea95c28e535c8bdd5255354910a6f92903b92.gz
Diffstat (limited to 'actions')
-rw-r--r-- | actions/newnotice.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/newnotice.php b/actions/newnotice.php index a7a3f8362..aabf5ccd7 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, |