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

Swap Open/Close status on Pholio

Summary: Swapped, Fixes T5439

Test Plan: Edited a Mock, set to Closed, see preferred order.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: epriestley, Korvin

Maniphest Tasks: T5439

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

+2 -2
+2 -2
src/applications/pholio/storage/PholioMock.php
··· 141 141 142 142 public function getStatuses() { 143 143 $options = array(); 144 - $options['closed'] = 'Closed'; 145 - $options['open'] = 'Open'; 144 + $options['open'] = pht('Open'); 145 + $options['closed'] = pht('Closed'); 146 146 return $options; 147 147 } 148 148