From 1f54b95324ebb078ca0fc340745adfe1a22886dc Mon Sep 17 00:00:00 2001 From: CodeMouse92 Date: Tue, 19 May 2015 10:04:51 -0700 Subject: [PATCH] Fixed typo on Releeph product query dropdown. Summary: Changed "Active Prodcuts" to "Active Products" on Releeph Product Query dropdown. (Incidentally, this is my first diff on Phabricator proper, so I hope I got it right. I'm used to SVN, not Git.) Test Plan: Make sure the change is there and didn't bork anything else. Reviewers: chad, #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: Korvin, epriestley Differential Revision: https://secure.phabricator.com/D12904 --- src/applications/releeph/query/ReleephProductSearchEngine.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/releeph/query/ReleephProductSearchEngine.php b/src/applications/releeph/query/ReleephProductSearchEngine.php index 51f1bcb560..37aecea858 100644 --- a/src/applications/releeph/query/ReleephProductSearchEngine.php +++ b/src/applications/releeph/query/ReleephProductSearchEngine.php @@ -74,7 +74,7 @@ final class ReleephProductSearchEngine private function getActiveOptions() { return array( 'all' => pht('Active and Inactive Products'), - 'active' => pht('Active Prodcuts'), + 'active' => pht('Active Products'), 'inactive' => pht('Inactive Products'), ); }