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

Remove unused parameter from PhabricatorConfigConsoleController::newLibraryVersionTable() call

Summary:
`Method PhabricatorConfigConsoleController::newLibraryVersionTable() invoked with 1 parameter, 0 required.`
Thus remove the parameter from its only call across the codebase.

Test Plan: Read the code.

Reviewers: O1 Blessed Committers, valerio.bozzolan

Reviewed By: O1 Blessed Committers, valerio.bozzolan

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Differential Revision: https://we.phorge.it/D25745

+1 -1
+1 -1
src/applications/config/controller/PhabricatorConfigConsoleController.php
··· 60 60 ->setBackground(PHUIObjectBoxView::WHITE_CONFIG) 61 61 ->setObjectList($menu); 62 62 63 - $versions = $this->newLibraryVersionTable($viewer); 63 + $versions = $this->newLibraryVersionTable(); 64 64 $binary_versions = $this->newBinaryVersionTable(); 65 65 66 66 $launcher_view = id(new PHUILauncherView())