From cdde859aeaa662ddc99e44004302ca4e93d58ae8 Mon Sep 17 00:00:00 2001 From: Chl Date: Mon, 5 Jun 2023 12:39:50 +0200 Subject: [PATCH] Correct the module's family CRM -> Financial, with the invoice module. --- core/modules/modsendrecurringinvoicebymail.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/modsendrecurringinvoicebymail.class.php b/core/modules/modsendrecurringinvoicebymail.class.php index b1153c4..f26bf39 100644 --- a/core/modules/modsendrecurringinvoicebymail.class.php +++ b/core/modules/modsendrecurringinvoicebymail.class.php @@ -52,7 +52,7 @@ class modsendrecurringinvoicebymail extends DolibarrModules // Family can be 'base' (core modules),'crm','financial','hr','projects','products','ecm','technic' (transverse modules),'interface' (link with external tools),'other','...' // It is used to group modules by family in module setup page - $this->family = "crm"; + $this->family = "financial"; // Module position in the family on 2 digits ('01', '10', '20', ...) $this->module_position = '90'; // Gives the possibility for the module, to provide his own family info and position of this family (Overwrite $this->family and $this->module_position. Avoid this)