@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 flipped open/closed status for Diviner atoms in search index

Summary: Fixes T12258. I think these constants are just flipped.

Test Plan: Kinda winged it.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T12258

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

+2 -2
+2 -2
src/applications/diviner/search/DivinerLiveSymbolFulltextEngine.php
··· 33 33 34 34 $document->addRelationship( 35 35 $atom->getGraphHash() 36 - ? PhabricatorSearchRelationship::RELATIONSHIP_CLOSED 37 - : PhabricatorSearchRelationship::RELATIONSHIP_OPEN, 36 + ? PhabricatorSearchRelationship::RELATIONSHIP_OPEN 37 + : PhabricatorSearchRelationship::RELATIONSHIP_CLOSED, 38 38 $atom->getBookPHID(), 39 39 DivinerBookPHIDType::TYPECONST, 40 40 PhabricatorTime::getNow());