@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 workboard link from project profile pages

Summary: Fixes T5165. This uses `$this->id`, but that may not always be populated anymore. Use the project ID directly instead.

Test Plan: Clicked a workboard link.

Reviewers: btrahan, chad

Reviewed By: chad

Subscribers: epriestley

Maniphest Tasks: T5165

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

+1 -1
+1 -1
src/applications/project/controller/PhabricatorProjectProfileController.php
··· 60 60 'phabricator-project-layout', 61 61 array($tasks, $feed)); 62 62 63 - $id = $this->id; 63 + $id = $project->getID(); 64 64 $icon = id(new PHUIIconView()) 65 65 ->setIconFont('fa-columns'); 66 66 $board_btn = id(new PHUIButtonView())