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

Delete dead code handling README

Summary: Since D2336.

Test Plan: Looked at README in Diffusion.

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

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

vrana 254678d4 66c648cc

-7
-7
src/applications/diffusion/controller/DiffusionBrowseController.php
··· 45 45 46 46 } else { 47 47 48 - $readme = null; 49 - 50 48 $phids = array(); 51 49 foreach ($results as $result) { 52 50 $data = $result->getLastCommitData(); ··· 54 52 if ($data->getCommitDetail('authorPHID')) { 55 53 $phids[$data->getCommitDetail('authorPHID')] = true; 56 54 } 57 - } 58 - 59 - $path = $result->getPath(); 60 - if (preg_match('/^readme(|\.txt|\.remarkup)$/i', $path)) { 61 - $readme = $result; 62 55 } 63 56 } 64 57