mirror of
https://we.phorge.it/source/phorge.git
synced 2025-03-10 19:34:51 +01:00
Fix an extra %s in BlogFeedController
Summary: Fished this out of the secure.phabricator.com error log. Introduced in D4869. Test Plan: Eyeballed it. Reviewers: chad, vrana Reviewed By: chad CC: aran Differential Revision: https://secure.phabricator.com/D5199
This commit is contained in:
parent
74f6c75ae7
commit
92c4dfdfb1
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ final class PhameBlogFeedController extends PhameController {
|
||||||
'/phame/post/view/'.$post->getID().'/'));
|
'/phame/post/view/'.$post->getID().'/'));
|
||||||
|
|
||||||
$content[] = hsprintf(
|
$content[] = hsprintf(
|
||||||
'<author><name>%s</name>%s</author>',
|
'<author><name>%s</name></author>',
|
||||||
$bloggers[$post->getBloggerPHID()]->getFullName());
|
$bloggers[$post->getBloggerPHID()]->getFullName());
|
||||||
|
|
||||||
$content[] = phutil_tag(
|
$content[] = phutil_tag(
|
||||||
|
|
Loading…
Add table
Reference in a new issue