1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-01-01 18:30:59 +01:00

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
This commit is contained in:
Richard van Velzen 2013-12-04 04:57:33 -08:00 committed by epriestley
parent 61f5461e6d
commit 16a7eaa700

View file

@ -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())