@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fixed overlong differential feed story titles

Summary:
Previously, the comment and/or summary would be added to the title. This
is incorrect behavior.

Test Plan: observed change

Reviewers: epriestley

Reviewed By: epriestley

CC: allenjohnashton, keebuhm, aran, Korvin

Differential Revision: https://secure.phabricator.com/D2701

authored by

David Fisher and committed by
epriestley
a57f5d15 1f3b058d

-5
-5
src/applications/feed/story/PhabricatorFeedStoryDifferential.php
··· 81 81 $owner_phid = $data->getValue('revision_author_phid'); 82 82 $revision_phid = $data->getValue('revision_phid'); 83 83 $action = $data->getValue('action'); 84 - $comments = $data->getValue('feedback_content'); 85 84 86 85 $actor_link = $this->linkTo($actor_phid); 87 86 $revision_link = $this->linkTo($revision_phid); ··· 90 89 $verb = DifferentialAction::getActionPastTenseVerb($action); 91 90 92 91 $one_line = "{$actor_link} {$verb} revision {$revision_link}"; 93 - 94 - if ($comments) { 95 - $one_line .= " \"{$comments}\""; 96 - } 97 92 98 93 return $one_line; 99 94 }