diff --git a/htdocs/core/modules/export/export_csviso.modules.php b/htdocs/core/modules/export/export_csviso.modules.php index 29a9e24e76a..6fd66aec769 100644 --- a/htdocs/core/modules/export/export_csviso.modules.php +++ b/htdocs/core/modules/export/export_csviso.modules.php @@ -21,7 +21,7 @@ * \brief File of class to build exports with CSV format */ -require_once DOL_DOCUMENT_ROOT.'/core/modules/export/exports_csv.modules.php'; +require_once DOL_DOCUMENT_ROOT.'/core/modules/export/exportcsv.modules.php'; // avoid timeout for big export set_time_limit(0); diff --git a/htdocs/core/modules/export/export_csvutf8.modules.php b/htdocs/core/modules/export/export_csvutf8.modules.php index f517dd00839..fc79bc79825 100644 --- a/htdocs/core/modules/export/export_csvutf8.modules.php +++ b/htdocs/core/modules/export/export_csvutf8.modules.php @@ -21,7 +21,7 @@ * \brief File of class to build exports with CSV format */ -require_once DOL_DOCUMENT_ROOT.'/core/modules/export/exports_csv.modules.php'; +require_once DOL_DOCUMENT_ROOT.'/core/modules/export/exportcsv.modules.php'; // avoid timeout for big export set_time_limit(0); diff --git a/htdocs/core/modules/export/exports_csv.modules.php b/htdocs/core/modules/export/exportcsv.modules.php similarity index 99% rename from htdocs/core/modules/export/exports_csv.modules.php rename to htdocs/core/modules/export/exportcsv.modules.php index 442c7cb628f..fd96bf468f3 100644 --- a/htdocs/core/modules/export/exports_csv.modules.php +++ b/htdocs/core/modules/export/exportcsv.modules.php @@ -16,7 +16,7 @@ */ /** - * \file htdocs/core/modules/export/export_csv.modules.php + * \file htdocs/core/modules/export/exportcsv.modules.php * \ingroup export * \brief File of class to build exports with CSV format */