mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
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
This commit is contained in:
parent
0569938880
commit
38c290a241
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ final class PhabricatorPasteStatusTransaction
|
|||
}
|
||||
|
||||
private function isActivate() {
|
||||
return ($this->getNewValue() == PhabricatorPaste::STATUS_ARCHIVED);
|
||||
return ($this->getNewValue() == PhabricatorPaste::STATUS_ACTIVE);
|
||||
}
|
||||
|
||||
public function getIcon() {
|
||||
|
|
Loading…
Reference in a new issue