@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 "bin/storage dump" with no "--output"

Ref T13004. (I distinctly remember testing this, but must have tweaked things afterward.)

+1 -1
+1 -1
src/infrastructure/storage/management/workflow/PhabricatorStorageManagementDumpWorkflow.php
··· 237 237 $file = fopen($output_file, 'wb'); 238 238 } 239 239 240 - if (!$file) { 240 + if (($output_file !== null) && !$file) { 241 241 throw new Exception( 242 242 pht( 243 243 'Failed to open file "%s" for writing.',