From 5ccc465798a5cca8c474f08d05c80334808fb10a Mon Sep 17 00:00:00 2001 From: Bob Trahan Date: Fri, 1 Aug 2014 11:06:42 -0700 Subject: [PATCH] Workboards - fix broken links on pages accessed via tag Summary: $this->id wasn't being set in this case so just set it explicitly after we finish loading the project. Fixes T5763. Test Plan: links were broken no longer! Reviewers: epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin Maniphest Tasks: T5763 Differential Revision: https://secure.phabricator.com/D10108 --- .../project/controller/PhabricatorProjectBoardViewController.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/applications/project/controller/PhabricatorProjectBoardViewController.php b/src/applications/project/controller/PhabricatorProjectBoardViewController.php index 006fd3563e..c61037e770 100644 --- a/src/applications/project/controller/PhabricatorProjectBoardViewController.php +++ b/src/applications/project/controller/PhabricatorProjectBoardViewController.php @@ -40,6 +40,7 @@ final class PhabricatorProjectBoardViewController } $this->setProject($project); + $this->id = $project->getID(); $column_query = id(new PhabricatorProjectColumnQuery()) ->setViewer($viewer)