Skip to content

Commit 217e0e7

Browse files
author
epriestley
committedMay 23, 2014
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 parent 9bba4cd commit 217e0e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/applications/project/controller/PhabricatorProjectProfileController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public function processRequest() {
6060
'phabricator-project-layout',
6161
array($tasks, $feed));
6262

63-
$id = $this->id;
63+
$id = $project->getID();
6464
$icon = id(new PHUIIconView())
6565
->setIconFont('fa-columns');
6666
$board_btn = id(new PHUIButtonView())

0 commit comments

Comments
 (0)
Failed to load comments.