1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-01-10 23:01:04 +01:00

Use comma-style for subscriber lists in Phriction

Summary: Fixes T3262.

Test Plan: {F44409}

Reviewers: chad

Reviewed By: chad

CC: aran

Maniphest Tasks: T3262

Differential Revision: https://secure.phabricator.com/D6064
This commit is contained in:
epriestley 2013-05-28 10:12:27 -07:00
parent 55f8e2a565
commit 95e49c6f0d

View file

@ -255,7 +255,7 @@ final class PhrictionDocumentController
$view->addProperty(pht('Last Updated'), $when); $view->addProperty(pht('Last Updated'), $when);
if ($subscribers) { if ($subscribers) {
$subscribers = $this->renderHandlesForPHIDs($subscribers); $subscribers = $this->renderHandlesForPHIDs($subscribers, ',');
$view->addProperty(pht('Subscribers'), $subscribers); $view->addProperty(pht('Subscribers'), $subscribers);
} }