@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, if we fatal before loading PhabricatorAccessLog, don't double-fatal.

+9 -7
+9 -7
webroot/index.php
··· 347 347 } 348 348 349 349 function phabricator_fatal($msg) { 350 - $log = PhabricatorAccessLog::getLog(); 351 - if ($log) { 352 - $log->setData( 353 - array( 354 - 'c' => 500, 355 - )); 356 - $log->write(); 350 + if (class_exists('PhabricatorAccessLog', false)) { 351 + $log = PhabricatorAccessLog::getLog(); 352 + if ($log) { 353 + $log->setData( 354 + array( 355 + 'c' => 500, 356 + )); 357 + $log->write(); 358 + } 357 359 } 358 360 359 361 header(