@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 argv in daemon log view

Summary: This could be empty probably for old logs

Test Plan: Ran the controller.

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

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

vrana dfe5ae08 511a8bae

+3 -1
+3 -1
src/applications/daemon/controller/PhabricatorDaemonLogViewController.php
··· 41 41 $content = array(); 42 42 43 43 $argv = $log->getArgv(); 44 - $argv = implode("\n", $argv); 44 + if ($argv) { 45 + $argv = implode("\n", $argv); 46 + } 45 47 46 48 $form = id(new AphrontFormView()) 47 49 ->setUser($user)