@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 a bad method call in cache startup.

+2 -2
+2 -2
src/applications/cache/spec/PhabricatorDataCacheSpec.php
··· 49 49 50 50 if (ini_get('apc.enabled')) { 51 51 $this->setIsEnabled(true); 52 - $this->getAPCCommonSpec(); 52 + $this->initAPCCommonSpec(); 53 53 } else { 54 54 $this->setIsEnabled(false); 55 55 $this->raiseEnableAPCIssue(); ··· 72 72 } 73 73 } 74 74 75 - private function getAPCCommonSpec() { 75 + private function initAPCCommonSpec() { 76 76 $mem = apc_sma_info(); 77 77 $this->setTotalMemory($mem['num_seg'] * $mem['seg_size']); 78 78