From 5cd6c053849958279ee0ac85bfe6a1592bc24218 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sat, 14 Dec 2013 00:31:29 +0100 Subject: [PATCH] Fix: Uniformize amounts --- htdocs/public/members/new.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/public/members/new.php b/htdocs/public/members/new.php index d2de44e3bebf9..3e3082cc98198 100644 --- a/htdocs/public/members/new.php +++ b/htdocs/public/members/new.php @@ -247,7 +247,7 @@ function llxFooterVierge() $adh->morphy = $_POST["morphy"]; $adh->birth = $birthday; - + // Fill array 'array_options' with data from add form $extralabels=$extrafields->fetch_name_optionals_label($adh->table_element); $ret = $extrafields->setOptionalsFromPost($extralabels,$adh); @@ -521,7 +521,7 @@ function initmorphy() // Add specific fields used by Dolibarr foundation for example if (! empty($conf->global->MEMBER_NEWFORM_DOLIBARRTURNOVER)) { - $arraybudget=array('50'=>'<= 100 000','100'=>'<= 200 000','200'=>'<= 500 000','400'=>'<= 1 500 000','750'=>'<= 3 000 000','1500'=>'<= 5 000 000','2000'=>'5 000 000+'); + $arraybudget=array('50'=>'<= 100 000','100'=>'<= 200 000','200'=>'<= 500 000','300'=>'<= 1 500 000','600'=>'<= 3 000 000','1000'=>'<= 5 000 000','2000'=>'5 000 000+'); print ''.$langs->trans("TurnoverOrBudget").' *'; print $form->selectarray('budget', $arraybudget, GETPOST('budget'), 1); print ' € or $';