diff --git a/htdocs/adherents/admin/member.php b/htdocs/adherents/admin/member.php
index 018498c2457..f9e5388d735 100644
--- a/htdocs/adherents/admin/member.php
+++ b/htdocs/adherents/admin/member.php
@@ -228,7 +228,7 @@ print "\n";
// Allow members to change type on renewal forms
/* To test during next beta
print '
| '.$langs->trans("MemberAllowchangeOfType").' | ';
-print $form->selectyesno('ADHERENT_LOGIN_NOT_REQUIRED', (!empty($conf->global->MEMBER_ALLOW_CHANGE_OF_TYPE) ? 0 : 1), 1);
+print $form->selectyesno('MEMBER_ALLOW_CHANGE_OF_TYPE', (!empty($conf->global->MEMBER_ALLOW_CHANGE_OF_TYPE) ? 0 : 1), 1);
print " |
\n";
*/
diff --git a/htdocs/societe/card.php b/htdocs/societe/card.php
index bfee51e5f8d..5c9c0f63e94 100644
--- a/htdocs/societe/card.php
+++ b/htdocs/societe/card.php
@@ -1151,6 +1151,10 @@ if (is_object($objcanvas) && $objcanvas->displayCanvasExists($action)) {
$("#typent_id").change();
$("#effectif_id").val(id_ef15);
$("#effectif_id").change();
+ /* Force to recompute the width of a select2 field when it was hidden and then shown programatically */
+ if ($("#civility_id").data("select2")) {
+ $("#civility_id").select2({width: "resolve"});
+ }
$("#TypeName").html(document.formsoc.LastName.value);
document.formsoc.private.value=1;
});