diff --git a/htdocs/societe/paymentmodes.php b/htdocs/societe/paymentmodes.php
index 433d81e523b..7ae6c4eadfd 100644
--- a/htdocs/societe/paymentmodes.php
+++ b/htdocs/societe/paymentmodes.php
@@ -809,7 +809,7 @@ if ($socid && $action != 'edit' && $action != 'create' && $action != 'editcard'
print img_credit_card($companypaymentmodetemp->type);
print '';
print '
';
- if ($companypaymentmodetemp->last_four) print '**** '.$companypaymentmodetemp->last_four;
+ if ($companypaymentmodetemp->last_four) print '....'.$companypaymentmodetemp->last_four;
if ($companypaymentmodetemp->exp_date_month || $companypaymentmodetemp->exp_date_year) print ' - '.$companypaymentmodetemp->exp_date_month.'/'.$companypaymentmodetemp->exp_date_year.'';
print ' | ';
if ($companypaymentmodetemp->country_code)
@@ -892,7 +892,7 @@ if ($socid && $action != 'edit' && $action != 'create' && $action != 'editcard'
print' | ';
if ($src->object=='card')
{
- print '**** '.$src->last4.' - '.$src->exp_month.'/'.$src->exp_year.'';
+ print '....'.$src->last4.' - '.$src->exp_month.'/'.$src->exp_year.'';
print ' | ';
if ($src->country)
{
@@ -904,7 +904,7 @@ if ($socid && $action != 'edit' && $action != 'create' && $action != 'editcard'
}
elseif ($src->object=='source' && $src->type=='card')
{
- print $src->owner->name.' **** '.$src->card->last4.' - '.$src->card->exp_month.'/'.$src->card->exp_year.'';
+ print $src->owner->name.' ....'.$src->card->last4.' - '.$src->card->exp_month.'/'.$src->card->exp_year.'';
print ' | ';
if ($src->card->country)
|