standardization, internationalisation

This commit is contained in:
Philippe GRAND 2021-02-09 14:03:13 +01:00
parent ff0c105207
commit a8b72c98a2

View File

@ -60,12 +60,12 @@ abstract class ModelePDFFactures extends CommonDocGenerator
global $conf; global $conf;
$type = 'invoice'; $type = 'invoice';
$liste = array(); $list = array();
include_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php'; include_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
$liste = getListOfModels($db, $type, $maxfilenamelength); $list = getListOfModels($db, $type, $maxfilenamelength);
return $liste; return $list;
} }
} }