From 16a7eaa700445f8d1ece382bf192fd0047f2d9aa Mon Sep 17 00:00:00 2001 From: Richard van Velzen Date: Wed, 4 Dec 2013 04:57:33 -0800 Subject: [PATCH] Fix wrong link to "Create Rule" in Herald mobile view Summary: The link pointed to `create/`, which gives as `404`. Test Plan: clicked the link. It worked. Reviewers: epriestley, #blessed_reviewers, chad Reviewed By: chad CC: Korvin, epriestley, aran Differential Revision: https://secure.phabricator.com/D7698 --- src/applications/herald/controller/HeraldController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/herald/controller/HeraldController.php b/src/applications/herald/controller/HeraldController.php index a4f4eab1e0..5bb4d92f17 100644 --- a/src/applications/herald/controller/HeraldController.php +++ b/src/applications/herald/controller/HeraldController.php @@ -39,7 +39,7 @@ abstract class HeraldController extends PhabricatorController { $nav->setBaseURI(new PhutilURI($this->getApplicationURI())); if ($for_app) { - $nav->addFilter('create', pht('Create Rule')); + $nav->addFilter('new', pht('Create Rule')); } id(new HeraldRuleSearchEngine())