diff --git a/htdocs/paybox/admin/paybox.php b/htdocs/paybox/admin/paybox.php index 1b0f4c79573..aa358d54ce9 100644 --- a/htdocs/paybox/admin/paybox.php +++ b/htdocs/paybox/admin/paybox.php @@ -153,7 +153,7 @@ $var=!$var; print ''; print $langs->trans("VendorName").''; print ''; -print '
'.$langs->trans("Example").': '.$mysoc->nom; +print '
'.$langs->trans("Example").': '.$mysoc->name; print ''; $var=!$var; diff --git a/htdocs/paypal/admin/paypal.php b/htdocs/paypal/admin/paypal.php index 66a5979fdbe..3ea415486b3 100644 --- a/htdocs/paypal/admin/paypal.php +++ b/htdocs/paypal/admin/paypal.php @@ -154,7 +154,7 @@ $var=!$var; print ''; print $langs->trans("VendorName").''; print ''; -print '
'.$langs->trans("Example").': '.$mysoc->nom; +print '
'.$langs->trans("Example").': '.$mysoc->name; print ''; $var=!$var; diff --git a/htdocs/public/paybox/newpayment.php b/htdocs/public/paybox/newpayment.php index 4e5cefcd2f9..701b3416b68 100644 --- a/htdocs/public/paybox/newpayment.php +++ b/htdocs/public/paybox/newpayment.php @@ -134,7 +134,7 @@ llxHeaderPayBox($langs->trans("PaymentForm")); // Common variables -$creditor=$mysoc->nom; +$creditor=$mysoc->name; $paramcreditor='PAYBOX_CREDITOR_'.$suffix; if (! empty($conf->global->$paramcreditor)) $creditor=$conf->global->$paramcreditor; else if (! empty($conf->global->PAYBOX_CREDITOR)) $creditor=$conf->global->PAYBOX_CREDITOR; diff --git a/htdocs/public/paypal/newpayment.php b/htdocs/public/paypal/newpayment.php index 8e215bc2d3c..c5e0df77d1d 100755 --- a/htdocs/public/paypal/newpayment.php +++ b/htdocs/public/paypal/newpayment.php @@ -215,7 +215,7 @@ llxHeaderPaypal($langs->trans("PaymentForm")); // Common variables -$creditor=$mysoc->nom; +$creditor=$mysoc->name; $paramcreditor='PAYPAL_CREDITOR_'.$suffix; if (! empty($conf->global->$paramcreditor)) $creditor=$conf->global->$paramcreditor; else if (! empty($conf->global->PAYPAL_CREDITOR)) $creditor=$conf->global->PAYPAL_CREDITOR;