From 10f159f876593b02eb645478c9d45dbb701faaca Mon Sep 17 00:00:00 2001 From: Jonathan Lomas Date: Tue, 31 Jul 2012 22:54:45 -0700 Subject: [PATCH] Change `From Priorty` to `To Priority` and `To Priority` to `Max Priority` to be clearer as to their purposes. --- .../maniphest/controller/ManiphestTaskListController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/applications/maniphest/controller/ManiphestTaskListController.php b/src/applications/maniphest/controller/ManiphestTaskListController.php index 77b9ba8792..f53686508a 100644 --- a/src/applications/maniphest/controller/ManiphestTaskListController.php +++ b/src/applications/maniphest/controller/ManiphestTaskListController.php @@ -228,7 +228,7 @@ final class ManiphestTaskListController extends ManiphestController { $form->appendChild( id(new AphrontFormSelectControl()) - ->setLabel('From Priority') + ->setLabel('Min Priority') ->setName('set_lpriority') ->setValue($priority) ->setOptions(array_reverse( @@ -241,7 +241,7 @@ final class ManiphestTaskListController extends ManiphestController { $form->appendChild( id(new AphrontFormSelectControl()) - ->setLabel('To Priority') + ->setLabel('Max Priority') ->setName('set_hpriority') ->setValue($priority) ->setOptions(ManiphestTaskPriority::getTaskPriorityMap()));