Remove utr8_decode call, PHP8 depreciation
This commit is contained in:
parent
00ae3cd89e
commit
868174e6ab
|
@ -330,9 +330,9 @@ elseif ($f->type_facture == CERFA)
|
|||
$t['total_lettre'] = numfmt_create('fr_FR', \NumberFormatter::SPELLOUT)->format($f->total/100). ' euros';
|
||||
|
||||
|
||||
$t['d'] = utf8_decode($f->date_emission->format('d'));
|
||||
$t['m'] = utf8_decode($f->date_emission->format('m'));
|
||||
$t['Y'] = utf8_decode($f->date_emission->format('Y'));
|
||||
$t['d'] = ($f->date_emission->format('d'));
|
||||
$t['m'] = ($f->date_emission->format('m'));
|
||||
$t['Y'] = ($f->date_emission->format('Y'));
|
||||
|
||||
$t['forme'] = $f->contenu['forme'];
|
||||
$t['nature'] = $f->contenu['nature'];
|
||||
|
@ -386,9 +386,9 @@ elseif ($f->type_facture == CERFA)
|
|||
$t['pos'] = 'left: 115.2mm;';
|
||||
}
|
||||
|
||||
$t['d2'] = utf8_decode($f->date_echeance->format('d'));
|
||||
$t['m2'] = utf8_decode($f->date_echeance->format('m'));
|
||||
$t['Y2'] = utf8_decode($f->date_echeance->format('Y'));
|
||||
$t['d2'] = ($f->date_echeance->format('d'));
|
||||
$t['m2'] = ($f->date_echeance->format('m'));
|
||||
$t['Y2'] = ($f->date_echeance->format('Y'));
|
||||
|
||||
ob_start();
|
||||
echo <<<EOF
|
||||
|
|
Loading…
Reference in New Issue