@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 PhabricatorDaemonController::buildSideNavView() call

Summary:
`Method PhabricatorDaemonController::buildSideNavView() invoked with 1 parameter, 0 required.`
Thus remove the parameter from its call in the same class.

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/D25746

+1 -1
+1 -1
src/applications/daemon/controller/PhabricatorDaemonController.php
··· 8 8 } 9 9 10 10 public function buildApplicationMenu() { 11 - return $this->buildSideNavView(true)->getMenu(); 11 + return $this->buildSideNavView()->getMenu(); 12 12 } 13 13 14 14 protected function buildSideNavView() {