1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 01:08:50 +02:00

Fix two Pholio subscriptions issues

Summary:
  - Grouping inline comments made us render `array(null)` for the content of a single comment. Detect that this corresponds to empty text.
  - Don't try to mention-subscribe automatic subscribers, like the author.

Test Plan: Tried to mention-subscribe the author, saw no "x subscribed y" transaction generate. Added a real subscriber, saw no empty content render.

Reviewers: chad

Reviewed By: chad

CC: aran

Differential Revision: https://secure.phabricator.com/D5315
This commit is contained in:
epriestley 2013-03-10 10:59:03 -07:00
parent 590f54a20e
commit 71d0465331
2 changed files with 6 additions and 3 deletions

View file

@ -429,9 +429,12 @@ abstract class PhabricatorApplicationTransactionEditor
$phids = array_diff($phids, $this->subscribers);
}
if (!$phids) {
return null;
foreach ($phids as $key => $phid) {
if ($object->isAutomaticallySubscribed($phid)) {
unset($phids[$key]);
}
}
$phids = array_values($phids);
$xaction = newv(get_class(head($xactions)), array());
$xaction->setTransactionType(PhabricatorTransactions::TYPE_SUBSCRIBERS);

View file

@ -163,7 +163,7 @@ final class PhabricatorTimelineEventView extends AphrontView {
$classes = array();
$classes[] = 'phabricator-timeline-event-view';
$classes[] = 'phabricator-timeline-border';
if ($content) {
if (!$this->isEmptyContent($content)) {
$classes[] = 'phabricator-timeline-major-event';
$content = phutil_tag(
'div',