@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.

Fix an ancient ad-hoc string truncation

Summary: Fixes T11139. We missed this years ago when we moved to PhutilUTF8StringTruncator.

Test Plan: {F1686072}

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T11139

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

+1 -3
+1 -3
src/applications/diffusion/data/DiffusionPathChange.php
··· 113 113 if (!$this->getCommitData()) { 114 114 return null; 115 115 } 116 - $message = $this->getCommitData()->getCommitMessage(); 117 - $first = idx(explode("\n", $message), 0); 118 - return substr($first, 0, 80); 116 + return $this->getCommitData()->getSummary(); 119 117 } 120 118 121 119 public static function convertToArcanistChanges(array $changes) {