@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.

Handle empty array argv in daemon log view

vrana bf98ab5e 5b74b8b7

+1 -1
+1 -1
src/applications/daemon/controller/PhabricatorDaemonLogViewController.php
··· 41 41 $content = array(); 42 42 43 43 $argv = $log->getArgv(); 44 - if ($argv) { 44 + if (is_array($argv)) { 45 45 $argv = implode("\n", $argv); 46 46 } 47 47