@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 a Paste activate/archive status constant in rendering

Summary: Fixes T11280. I extracted this at the last minute and got the constant flipped.

Test Plan: Archived, then activated a paste. Observed correct timeline stories/icons/etc.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T11280

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

+1 -1
+1 -1
src/applications/paste/xaction/PhabricatorPasteStatusTransaction.php
··· 14 14 } 15 15 16 16 private function isActivate() { 17 - return ($this->getNewValue() == PhabricatorPaste::STATUS_ARCHIVED); 17 + return ($this->getNewValue() == PhabricatorPaste::STATUS_ACTIVE); 18 18 } 19 19 20 20 public function getIcon() {