Skip to content

Commit

Permalink
Fix no default value for dangerous actions
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Aug 13, 2015
1 parent 460a78e commit 4a6239f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions htdocs/societe/soc.php
Expand Up @@ -1859,11 +1859,11 @@
'name' => 'soc_origin',
'label' => $langs->trans('MergeOriginThirdparty'),
'type' => 'other',
'value' => $form->select_company('', 'soc_origin', 's.rowid != '.$object->id)
'value' => $form->select_company('', 'soc_origin', 's.rowid != '.$object->id, 1, 0, 0, array(), 0, 'minwidth200')
)
);

print $form->formconfirm($_SERVER["PHP_SELF"]."?socid=".$object->id, $langs->trans("MergeThirdparties"), $langs->trans("ConfirmMergeThirdparties"), "confirm_merge", $formquestion, 'no', 1);
print $form->formconfirm($_SERVER["PHP_SELF"]."?socid=".$object->id, $langs->trans("MergeThirdparties"), $langs->trans("ConfirmMergeThirdparties"), "confirm_merge", $formquestion, 'no', 1, 190);
}

dol_htmloutput_errors($error,$errors);
Expand Down

0 comments on commit 4a6239f

Please sign in to comment.