1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-19 05:12:41 +01:00

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
This commit is contained in:
Bob Trahan 2014-08-01 11:06:42 -07:00
parent 5cd269609d
commit 5ccc465798

View file

@ -40,6 +40,7 @@ final class PhabricatorProjectBoardViewController
}
$this->setProject($project);
$this->id = $project->getID();
$column_query = id(new PhabricatorProjectColumnQuery())
->setViewer($viewer)