From c7a6cfd87c443fe72f5f998d7d7835c512ba663c Mon Sep 17 00:00:00 2001 From: Nevogd Date: Mon, 3 Oct 2016 10:14:30 -0700 Subject: [PATCH] Fix 'Branches' typo in ActionsManagementPanel Summary: Fix typo 'Branches' in the panel header for the Diffusion Actions management panel. Test Plan: Saw 'Actions' in the panel heading Reviewers: chad, epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D16654 --- .../management/DiffusionRepositoryActionsManagementPanel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/diffusion/management/DiffusionRepositoryActionsManagementPanel.php b/src/applications/diffusion/management/DiffusionRepositoryActionsManagementPanel.php index 3a82879b26..1f47a68de3 100644 --- a/src/applications/diffusion/management/DiffusionRepositoryActionsManagementPanel.php +++ b/src/applications/diffusion/management/DiffusionRepositoryActionsManagementPanel.php @@ -78,7 +78,7 @@ final class DiffusionRepositoryActionsManagementPanel $autoclose = phutil_tag('em', array(), $autoclose); $view->addProperty(pht('Autoclose'), $autoclose); - return $this->newBox(pht('Branches'), $view); + return $this->newBox(pht('Actions'), $view); } }