From 007e58782ac32a92815f97492956aced2e54be93 Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Tue, 9 Feb 2021 14:26:46 +0100 Subject: [PATCH] standardization, internationalisation --- htdocs/reception/card.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/htdocs/reception/card.php b/htdocs/reception/card.php index 27ba05f24bb..41e8f60e634 100644 --- a/htdocs/reception/card.php +++ b/htdocs/reception/card.php @@ -860,13 +860,13 @@ if ($action == 'create') // Document model include_once DOL_DOCUMENT_ROOT.'/core/modules/reception/modules_reception.php'; - $liste = ModelePdfReception::liste_modeles($db); + $list = ModelePdfReception::liste_modeles($db); - if (count($liste) > 1) + if (count($list) > 1) { print "".$langs->trans("DefaultModel").""; print ''; - print $form->selectarray('model', $liste, $conf->global->RECEPTION_ADDON_PDF); + print $form->selectarray('model', $list, $conf->global->RECEPTION_ADDON_PDF); print "\n"; }