@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 weird issue where INF is not respected in PHP 5.5

Summary:
After upgrading to PHP 5.5, the conduit list was not fully visible because
INF was being treated as "0" for some reason. Fixed by making it a PHP_MAX_INT

Test Plan: Checked on PHP 5.5

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley

CC: Korvin, epriestley, aran

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

authored by

Anirudh Sanjeev and committed by
epriestley
1bcf478c f68d6753

+1 -1
+1 -1
src/applications/conduit/query/PhabricatorConduitSearchEngine.php
··· 4 4 extends PhabricatorApplicationSearchEngine { 5 5 6 6 public function getPageSize(PhabricatorSavedQuery $saved) { 7 - return INF; 7 + return PHP_INT_MAX - 1; 8 8 } 9 9 10 10 public function buildSavedQueryFromRequest(AphrontRequest $request) {