@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 XHProf under HPHP/HPHPi.

+3 -1
+3 -1
src/aphront/console/plugin/xhprof/api/DarkConsoleXHProfPluginAPI.php
··· 55 55 56 56 public static function startProfiler() { 57 57 self::includeXHProfLib(); 58 - xhprof_enable(); 58 + // Note: HPHP's implementation of XHProf currently requires an argument 59 + // to xhprof_enable() -- see Facebook Task #531011. 60 + xhprof_enable(0); 59 61 } 60 62 61 63 public static function stopProfiler() {