@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 PHP8 array_slice($results, null) which cause diffusion pattern search broken

Test Plan: check diffusion pattern search if working

Reviewers: O1 Blessed Committers, valerio.bozzolan

Reviewed By: O1 Blessed Committers, valerio.bozzolan

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Differential Revision: https://we.phorge.it/D25756

jesse 721d5ed6 e2919211

+1 -1
+1 -1
src/applications/diffusion/conduit/DiffusionSearchQueryConduitAPIMethod.php
··· 40 40 throw $ex; 41 41 } 42 42 43 - $offset = $request->getValue('offset'); 43 + $offset = $request->getValue('offset', 0); 44 44 $results = array_slice($results, $offset); 45 45 46 46 return $results;