From 695567961430b4f181a7fbb51632754a970a8771 Mon Sep 17 00:00:00 2001 From: Chad Bean Date: Mon, 3 Aug 2015 14:16:56 -0400 Subject: [PATCH] Update CustomerSetup to change order of gender in option --- app/code/Magento/Customer/Setup/CustomerSetup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/code/Magento/Customer/Setup/CustomerSetup.php b/app/code/Magento/Customer/Setup/CustomerSetup.php index c3483bd664042..34a34f01f3e65 100644 --- a/app/code/Magento/Customer/Setup/CustomerSetup.php +++ b/app/code/Magento/Customer/Setup/CustomerSetup.php @@ -324,7 +324,7 @@ public function getDefaultEntities() 'validate_rules' => 'a:0:{}', 'position' => 110, 'admin_checkout' => 1, - 'option' => ['values' => ['Not Specified', 'Male', 'Female']], + 'option' => ['values' => ['Male', 'Female', 'Not Specified']], ], 'disable_auto_group_change' => [ 'type' => 'static',