mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-19 12:00:55 +01:00
Fix fatal in Maniphest
Summary: Fixes T9596. Was unable to navigate to a task in Maniphest. Test Plan: navigate to that task. Reviewers: #blessed_reviewers, epriestley, avivey, tycho.tatitscheff Reviewed By: avivey, tycho.tatitscheff Subscribers: tycho.tatitscheff, avivey, Korvin Maniphest Tasks: T9596 Differential Revision: https://secure.phabricator.com/D14300
This commit is contained in:
parent
0e8ed0c616
commit
4782491470
1 changed files with 2 additions and 2 deletions
|
@ -418,9 +418,9 @@ final class ManiphestTaskDetailController extends ManiphestController {
|
|||
id(new PhabricatorActionView())
|
||||
->setName(pht('Create Subtask'))
|
||||
->setHref($this->getApplicationURI("/task/create/?parent={$id}"))
|
||||
->setIcon('fa-level-down'))
|
||||
->setIcon('fa-level-down')
|
||||
->setDisabled(!$can_create)
|
||||
->setWorkflow(!$can_create);
|
||||
->setWorkflow(!$can_create));
|
||||
|
||||
$view->addAction(
|
||||
id(new PhabricatorActionView())
|
||||
|
|
Loading…
Reference in a new issue