From e6e4ddd03ab46c45207029ef6bb7100349fcee16 Mon Sep 17 00:00:00 2001 From: epriestley Date: Thu, 9 Jun 2016 12:23:42 -0700 Subject: [PATCH] Change simple template dashboard to "Open Tasks" instead of "All Tasks" Summary: "All Tasks" is bad in the long run and not clearly better for new installs. Test Plan: Created a new smiple template, saw open tasks only. Reviewers: chad Reviewed By: chad Differential Revision: https://secure.phabricator.com/D16093 --- .../controller/PhabricatorDashboardEditController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/applications/dashboard/controller/PhabricatorDashboardEditController.php b/src/applications/dashboard/controller/PhabricatorDashboardEditController.php index 665f9735d8..8438d0442b 100644 --- a/src/applications/dashboard/controller/PhabricatorDashboardEditController.php +++ b/src/applications/dashboard/controller/PhabricatorDashboardEditController.php @@ -268,10 +268,10 @@ final class PhabricatorDashboardEditController $request, $viewer, 'query', - pht('Recent Tasks'), + pht('Open Tasks'), array( 'class' => 'ManiphestTaskSearchEngine', - 'key' => 'all', + 'key' => 'open', )); $panel_phids[] = $task_panel->getPHID();