Skip to content

Commit

Permalink
Fix: Uniformize amounts
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Dec 13, 2013
1 parent c51fa70 commit 5cd6c05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions htdocs/public/members/new.php
Expand Up @@ -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);
Expand Down Expand Up @@ -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 '<tr id="trbudget" class="trcompany"><td>'.$langs->trans("TurnoverOrBudget").' <FONT COLOR="red">*</FONT></td><td>';
print $form->selectarray('budget', $arraybudget, GETPOST('budget'), 1);
print ' € or $';
Expand Down

0 comments on commit 5cd6c05

Please sign in to comment.