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

Minor, mark SERIALIZATION_PHP fields as BINARY in Lisk

+9
+3
src/applications/cache/storage/PhabricatorMarkupCache.php
··· 12 12 'cacheData' => self::SERIALIZATION_PHP, 13 13 'metadata' => self::SERIALIZATION_JSON, 14 14 ), 15 + self::CONFIG_BINARY => array( 16 + 'cacheData' => true, 17 + ), 15 18 ) + parent::getConfiguration(); 16 19 } 17 20
+6
src/applications/herald/storage/transcript/HeraldTranscript.php
··· 92 92 'conditionTranscripts' => self::SERIALIZATION_PHP, 93 93 'applyTranscripts' => self::SERIALIZATION_PHP, 94 94 ), 95 + self::CONFIG_BINARY => array( 96 + 'objectTranscript' => true, 97 + 'ruleTranscripts' => true, 98 + 'conditionTranscripts' => true, 99 + 'applyTranscripts' => true, 100 + ), 95 101 ) + parent::getConfiguration(); 96 102 } 97 103