@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 a mismatched method definition in PhabricatorHomeProfileMenuItem

Summary: Fixes T12187. Ref T12190. See T12190 for discussion of why this escaped notice.

Test Plan:
- Commented out the `error_reporting()` clause around file inclusion.
- Reproduced the error in PHP7.
- Corrected the method signature.
- Reloaded the page, no more error.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T12190, T12187

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

+2 -1
+2 -1
src/applications/home/menuitem/PhabricatorHomeProfileMenuItem.php
··· 29 29 return $this->getDefaultName(); 30 30 } 31 31 32 - public function newPageContent() { 32 + public function newPageContent( 33 + PhabricatorProfileMenuItemConfiguration $config) { 33 34 $viewer = $this->getViewer(); 34 35 35 36 return id(new PHUIHomeView())