From 54c70d3742776a980eb7ac185caee8db07e11113 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Tue, 18 Apr 2023 17:03:24 +0200 Subject: [PATCH] Rename files --- htdocs/core/modules/export/export_csviso.modules.php | 2 +- htdocs/core/modules/export/export_csvutf8.modules.php | 2 +- .../export/{exports_csv.modules.php => exportcsv.modules.php} | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename htdocs/core/modules/export/{exports_csv.modules.php => exportcsv.modules.php} (99%) 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 */