standardization, internationalisation

This commit is contained in:
Philippe GRAND 2021-02-09 13:58:26 +01:00
parent 3d892bd60b
commit 39c3bcd265

View File

@ -142,14 +142,14 @@ abstract class ModeleChequeReceipts extends CommonDocGenerator
global $conf;
$type = 'chequereceipt';
$liste = array();
$list = array();
include_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
$liste = getListOfModels($db, $type, $maxfilenamelength);
$list = getListOfModels($db, $type, $maxfilenamelength);
// TODO Remove this to use getListOfModels only
$liste = array('blochet'=>'blochet');
$list = array('blochet'=>'blochet');
return $liste;
return $list;
}
}