From c71f92a1eba7826165036e29c025c3ea57198a3a Mon Sep 17 00:00:00 2001 From: Chad Little Date: Tue, 7 Jun 2016 18:20:43 -0700 Subject: [PATCH] Fix new Countdown link Summary: Correct the url for edit engine. Fixes T11046 Test Plan: new install -> clicky green button Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Maniphest Tasks: T11046 Differential Revision: https://secure.phabricator.com/D16078 --- .../countdown/query/PhabricatorCountdownSearchEngine.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/countdown/query/PhabricatorCountdownSearchEngine.php b/src/applications/countdown/query/PhabricatorCountdownSearchEngine.php index 93aec9a037..0abf9e453a 100644 --- a/src/applications/countdown/query/PhabricatorCountdownSearchEngine.php +++ b/src/applications/countdown/query/PhabricatorCountdownSearchEngine.php @@ -147,7 +147,7 @@ final class PhabricatorCountdownSearchEngine $create_button = id(new PHUIButtonView()) ->setTag('a') ->setText(pht('Create a Countdown')) - ->setHref('/countdown/create/') + ->setHref('/countdown/edit/') ->setColor(PHUIButtonView::GREEN); $icon = $this->getApplication()->getIcon();