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

DERP 2 with my last diff - shouldn't have pulled this outside the conditional

+2 -2
+2 -2
src/applications/conpherence/controller/ConpherenceController.php
··· 146 146 if (count($transactions) == $too_many) { 147 147 $last_transaction = end($transactions); 148 148 unset($transactions[$last_transaction->getID()]); 149 + $oldest_transaction = end($transactions); 150 + $oldest_transaction_id = $oldest_transaction->getID(); 149 151 } 150 152 $transactions = array_reverse($transactions); 151 - $oldest_transaction = reset($transactions); 152 - $oldest_transaction_id = $oldest_transaction->getID(); 153 153 $handles = $conpherence->getHandles(); 154 154 $rendered_transactions = array(); 155 155 $engine = id(new PhabricatorMarkupEngine())