From e7e67e4481385f36de9f9c3acc454f4c98e26891 Mon Sep 17 00:00:00 2001 From: Chad Little Date: Tue, 24 Feb 2015 14:52:57 -0800 Subject: [PATCH] Fix mobile Maniphest Create link Summary: Fixes T7367 Test Plan: I guess noone every used this? Click on mobile menu, get not a 404. Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: Korvin, epriestley Maniphest Tasks: T7367 Differential Revision: https://secure.phabricator.com/D11880 --- src/applications/maniphest/controller/ManiphestController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/maniphest/controller/ManiphestController.php b/src/applications/maniphest/controller/ManiphestController.php index ea79e31bc4..87eaf69706 100644 --- a/src/applications/maniphest/controller/ManiphestController.php +++ b/src/applications/maniphest/controller/ManiphestController.php @@ -13,7 +13,7 @@ abstract class ManiphestController extends PhabricatorController { $nav->setBaseURI(new PhutilURI($this->getApplicationURI())); if ($for_app) { - $nav->addFilter('create', pht('Create Task')); + $nav->addFilter('task/create/', pht('Create Task')); } id(new ManiphestTaskSearchEngine())