From 198cf4af2fe0f7c5fff92f3385e48b51d1bb33b6 Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Mon, 18 Mar 2019 10:06:22 +0100 Subject: [PATCH 01/13] add comments --- htdocs/comm/action/class/actioncomm.class.php | 34 +++++++++++++++---- 1 file changed, 28 insertions(+), 6 deletions(-) diff --git a/htdocs/comm/action/class/actioncomm.class.php b/htdocs/comm/action/class/actioncomm.class.php index ab3a07f2192..8f80f4755f4 100644 --- a/htdocs/comm/action/class/actioncomm.class.php +++ b/htdocs/comm/action/class/actioncomm.class.php @@ -87,9 +87,20 @@ class ActionComm extends CommonObject * @var string Agenda event label */ public $label; - - public $datec; // Date creation record (datec) - public $datem; // Date modification record (tms) + + /** + * Date creation record (datec) + * + * @var DateTime + */ + public $datec; + + /** + * Date modification record (tms) + * + * @var DateTime + */ + public $datem; /** * Object user that create action @@ -118,9 +129,20 @@ class ActionComm extends CommonObject * @var int */ public $usermodid; - - public $datep; // Date action start (datep) - public $datef; // Date action end (datep2) + + /** + * Date action start (datep) + * + * @var DateTime + */ + public $datep; + + /** + * Date action end (datep2) + * + * @var DateTime + */ + public $datep2; /** * @var int -1=Unkown duration From c98f3ae4b36ebdd8ce8296b5b81dd6d095d6a287 Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Mon, 18 Mar 2019 10:20:24 +0100 Subject: [PATCH 02/13] add comments --- htdocs/accountancy/class/accountingaccount.class.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/htdocs/accountancy/class/accountingaccount.class.php b/htdocs/accountancy/class/accountingaccount.class.php index f184d30699f..73c146c822b 100644 --- a/htdocs/accountancy/class/accountingaccount.class.php +++ b/htdocs/accountancy/class/accountingaccount.class.php @@ -74,9 +74,11 @@ class AccountingAccount extends CommonObject public $rowid; /** - * @var string Creation date + * Date creation record (datec) + * + * @var DateTime */ - public $datec; + public $datec; /** * @var string pcg version From 905f7cf8dd006a425ba4f87f210d3e73430ca63f Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Mon, 18 Mar 2019 10:22:20 +0100 Subject: [PATCH 03/13] add comments --- htdocs/adherents/class/adherent.class.php | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/htdocs/adherents/class/adherent.class.php b/htdocs/adherents/class/adherent.class.php index 9a84782e920..082ae43be6d 100644 --- a/htdocs/adherents/class/adherent.class.php +++ b/htdocs/adherents/class/adherent.class.php @@ -176,8 +176,20 @@ class Adherent extends CommonObject public $photo; - public $datec; - public $datem; + /** + * Date creation record (datec) + * + * @var DateTime + */ + public $datec; + + /** + * Date modification record (tms) + * + * @var DateTime + */ + public $datem; + public $datevalid; public $gender; From 03785aa53f55b78fdb069960d800db39253a592d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20FRANCE?= Date: Mon, 18 Mar 2019 11:45:54 +0100 Subject: [PATCH 04/13] Update index.php --- htdocs/modulebuilder/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/modulebuilder/index.php b/htdocs/modulebuilder/index.php index 925990283c6..4813aee6dd4 100644 --- a/htdocs/modulebuilder/index.php +++ b/htdocs/modulebuilder/index.php @@ -1100,7 +1100,7 @@ print load_fiche_titre($text, '', 'title_setup'); print $langs->trans("ModuleBuilderDesc", 'https://wiki.dolibarr.org/index.php/Module_development#Create_your_module').'
'; $dirsrootforscan=array($dirread); -if ($dirread != DOL_DOCUMENT_ROOT && ! empty($conf->global->MAIN_FEATURES_LEVEL >=2)) { $dirsrootforscan[]=DOL_DOCUMENT_ROOT; } +if ($dirread != DOL_DOCUMENT_ROOT && $conf->global->MAIN_FEATURES_LEVEL >=2) { $dirsrootforscan[]=DOL_DOCUMENT_ROOT; } // Search modules to edit $listofmodules=array(); From 609dc5360bd9e04997ec47dd81c63df962184b21 Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Mon, 18 Mar 2019 12:19:56 +0100 Subject: [PATCH 05/13] add comments --- htdocs/adherents/class/subscription.class.php | 31 ++++++++++++++++--- 1 file changed, 27 insertions(+), 4 deletions(-) diff --git a/htdocs/adherents/class/subscription.class.php b/htdocs/adherents/class/subscription.class.php index 52cb8e05bbd..236a118ab4b 100644 --- a/htdocs/adherents/class/subscription.class.php +++ b/htdocs/adherents/class/subscription.class.php @@ -47,10 +47,33 @@ class Subscription extends CommonObject */ public $picto='payment'; - public $datec; // Date creation - public $datem; // Date modification - public $dateh; // Subscription start date (date subscription) - public $datef; // Subscription end date + /** + * Date creation record (datec) + * + * @var integer + */ + public $datec; + + /** + * Date modification record (tms) + * + * @var integer + */ + public $datem; + + /** + * Subscription start date (date subscription) + * + * @var integer + */ + public $dateh; + + /** + * Subscription end date + * + * @var integer + */ + public $datef; /** * @var int ID From 794290354871157eca92d3009d0dc49d12f49139 Mon Sep 17 00:00:00 2001 From: Philippe Grand Date: Mon, 18 Mar 2019 12:24:16 +0100 Subject: [PATCH 06/13] Update actioncomm.class.php --- htdocs/comm/action/class/actioncomm.class.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/htdocs/comm/action/class/actioncomm.class.php b/htdocs/comm/action/class/actioncomm.class.php index 8f80f4755f4..9917736bdc8 100644 --- a/htdocs/comm/action/class/actioncomm.class.php +++ b/htdocs/comm/action/class/actioncomm.class.php @@ -91,14 +91,14 @@ class ActionComm extends CommonObject /** * Date creation record (datec) * - * @var DateTime + * @var integer */ public $datec; /** * Date modification record (tms) * - * @var DateTime + * @var integer */ public $datem; @@ -133,14 +133,14 @@ class ActionComm extends CommonObject /** * Date action start (datep) * - * @var DateTime + * @var integer */ public $datep; /** * Date action end (datep2) * - * @var DateTime + * @var integer */ public $datep2; From 2a91629e57a8a5e6bf856d9c3aeededd108174eb Mon Sep 17 00:00:00 2001 From: Philippe Grand Date: Mon, 18 Mar 2019 12:24:52 +0100 Subject: [PATCH 07/13] Update accountingaccount.class.php --- htdocs/accountancy/class/accountingaccount.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/accountancy/class/accountingaccount.class.php b/htdocs/accountancy/class/accountingaccount.class.php index 73c146c822b..f214a3f3570 100644 --- a/htdocs/accountancy/class/accountingaccount.class.php +++ b/htdocs/accountancy/class/accountingaccount.class.php @@ -76,7 +76,7 @@ class AccountingAccount extends CommonObject /** * Date creation record (datec) * - * @var DateTime + * @var integer */ public $datec; From 4935aa2fe41bf522c5d02f227354b399d65501ef Mon Sep 17 00:00:00 2001 From: Philippe Grand Date: Mon, 18 Mar 2019 12:25:35 +0100 Subject: [PATCH 08/13] Update adherent.class.php --- htdocs/adherents/class/adherent.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/adherents/class/adherent.class.php b/htdocs/adherents/class/adherent.class.php index 082ae43be6d..201b6610817 100644 --- a/htdocs/adherents/class/adherent.class.php +++ b/htdocs/adherents/class/adherent.class.php @@ -179,14 +179,14 @@ class Adherent extends CommonObject /** * Date creation record (datec) * - * @var DateTime + * @var integer */ public $datec; /** * Date modification record (tms) * - * @var DateTime + * @var integer */ public $datem; From 0f03b16313287c8a12e5c765d175e5baa2717630 Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Mon, 18 Mar 2019 12:46:32 +0100 Subject: [PATCH 09/13] translation --- htdocs/comm/propal/class/propal.class.php | 2 +- htdocs/compta/facture/class/facture-rec.class.php | 4 ++-- htdocs/fourn/class/fournisseur.facture.class.php | 2 +- htdocs/supplier_proposal/class/supplier_proposal.class.php | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/htdocs/comm/propal/class/propal.class.php b/htdocs/comm/propal/class/propal.class.php index fd9187afb9c..dc9bc9ea87e 100644 --- a/htdocs/comm/propal/class/propal.class.php +++ b/htdocs/comm/propal/class/propal.class.php @@ -411,7 +411,7 @@ class Propal extends CommonObject * @param float $txtva Force Vat rate, -1 for auto (Can contain the vat_src_code too with syntax '9.9 (CODE)') * @param float $txlocaltax1 Local tax 1 rate (deprecated, use instead txtva with code inside) * @param float $txlocaltax2 Local tax 2 rate (deprecated, use instead txtva with code inside) - * @param int $fk_product Id du produit/service predefini + * @param int $fk_product Product/Service ID predefined * @param float $remise_percent Pourcentage de remise de la ligne * @param string $price_base_type HT or TTC * @param float $pu_ttc Prix unitaire TTC diff --git a/htdocs/compta/facture/class/facture-rec.class.php b/htdocs/compta/facture/class/facture-rec.class.php index 0d32c25bc5a..4b801804e3e 100644 --- a/htdocs/compta/facture/class/facture-rec.class.php +++ b/htdocs/compta/facture/class/facture-rec.class.php @@ -681,7 +681,7 @@ class FactureRec extends CommonInvoice * @param double $txtva Taux de tva force, sinon -1 * @param double $txlocaltax1 Local tax 1 rate (deprecated) * @param double $txlocaltax2 Local tax 2 rate (deprecated) - * @param int $fk_product Id du produit/service predefini + * @param int $fk_product Product/Service ID predefined * @param double $remise_percent Pourcentage de remise de la ligne * @param string $price_base_type HT or TTC * @param int $info_bits VAT npr or not ? @@ -862,7 +862,7 @@ class FactureRec extends CommonInvoice * @param double $txtva Taux de tva force, sinon -1 * @param double $txlocaltax1 Local tax 1 rate (deprecated) * @param double $txlocaltax2 Local tax 2 rate (deprecated) - * @param int $fk_product Id du produit/service predefini + * @param int $fk_product Product/Service ID predefined * @param double $remise_percent Pourcentage de remise de la ligne * @param string $price_base_type HT or TTC * @param int $info_bits Bits de type de lignes diff --git a/htdocs/fourn/class/fournisseur.facture.class.php b/htdocs/fourn/class/fournisseur.facture.class.php index aa914b54894..e30ae227aa0 100644 --- a/htdocs/fourn/class/fournisseur.facture.class.php +++ b/htdocs/fourn/class/fournisseur.facture.class.php @@ -1540,7 +1540,7 @@ class FactureFournisseur extends CommonInvoice * @param double $txlocaltax1 LocalTax1 Rate * @param double $txlocaltax2 LocalTax2 Rate * @param double $qty Quantite - * @param int $fk_product Id du produit/service predefini + * @param int $fk_product Product/Service ID predefined * @param double $remise_percent Pourcentage de remise de la ligne * @param date $date_start Date de debut de validite du service * @param date $date_end Date de fin de validite du service diff --git a/htdocs/supplier_proposal/class/supplier_proposal.class.php b/htdocs/supplier_proposal/class/supplier_proposal.class.php index 3aba8afccc1..3ce2ee71438 100644 --- a/htdocs/supplier_proposal/class/supplier_proposal.class.php +++ b/htdocs/supplier_proposal/class/supplier_proposal.class.php @@ -373,7 +373,7 @@ class SupplierProposal extends CommonObject * @param double $txtva Taux de tva * @param double $txlocaltax1 Local tax 1 rate * @param double $txlocaltax2 Local tax 2 rate - * @param int $fk_product Id du produit/service predefini + * @param int $fk_product Product/Service ID predefined * @param double $remise_percent Pourcentage de remise de la ligne * @param string $price_base_type HT or TTC * @param double $pu_ttc Prix unitaire TTC From c13a1dbc63fd0e1b53607cfb993019f5f185faea Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Mon, 18 Mar 2019 13:45:24 +0100 Subject: [PATCH 10/13] translation --- htdocs/commande/class/commande.class.php | 2 +- htdocs/compta/facture/class/facture-rec.class.php | 4 ++-- htdocs/compta/facture/class/facture.class.php | 6 +++--- htdocs/contrat/class/contrat.class.php | 4 ++-- htdocs/fourn/class/fournisseur.facture.class.php | 4 ++-- htdocs/supplier_proposal/class/supplier_proposal.class.php | 2 +- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/htdocs/commande/class/commande.class.php b/htdocs/commande/class/commande.class.php index a92bfe23eb8..f391d4bf0e0 100644 --- a/htdocs/commande/class/commande.class.php +++ b/htdocs/commande/class/commande.class.php @@ -1281,7 +1281,7 @@ class Commande extends CommonOrder * @param float $txlocaltax1 Local tax 1 rate (deprecated, use instead txtva with code inside) * @param float $txlocaltax2 Local tax 2 rate (deprecated, use instead txtva with code inside) * @param int $fk_product Id of product - * @param float $remise_percent Pourcentage de remise de la ligne + * @param float $remise_percent Percentage discount of the line * @param int $info_bits Bits de type de lignes * @param int $fk_remise_except Id remise * @param string $price_base_type HT or TTC diff --git a/htdocs/compta/facture/class/facture-rec.class.php b/htdocs/compta/facture/class/facture-rec.class.php index 4b801804e3e..89f324d2450 100644 --- a/htdocs/compta/facture/class/facture-rec.class.php +++ b/htdocs/compta/facture/class/facture-rec.class.php @@ -682,7 +682,7 @@ class FactureRec extends CommonInvoice * @param double $txlocaltax1 Local tax 1 rate (deprecated) * @param double $txlocaltax2 Local tax 2 rate (deprecated) * @param int $fk_product Product/Service ID predefined - * @param double $remise_percent Pourcentage de remise de la ligne + * @param double $remise_percent Percentage discount of the line * @param string $price_base_type HT or TTC * @param int $info_bits VAT npr or not ? * @param int $fk_remise_except Id remise @@ -863,7 +863,7 @@ class FactureRec extends CommonInvoice * @param double $txlocaltax1 Local tax 1 rate (deprecated) * @param double $txlocaltax2 Local tax 2 rate (deprecated) * @param int $fk_product Product/Service ID predefined - * @param double $remise_percent Pourcentage de remise de la ligne + * @param double $remise_percent Percentage discount of the line * @param string $price_base_type HT or TTC * @param int $info_bits Bits de type de lignes * @param int $fk_remise_except Id remise diff --git a/htdocs/compta/facture/class/facture.class.php b/htdocs/compta/facture/class/facture.class.php index 6076cbb6232..092049e5c13 100644 --- a/htdocs/compta/facture/class/facture.class.php +++ b/htdocs/compta/facture/class/facture.class.php @@ -2865,9 +2865,9 @@ class Facture extends CommonInvoice * @param string $desc Description of line * @param double $pu Prix unitaire (HT ou TTC selon price_base_type) (> 0 even for credit note lines) * @param double $qty Quantity - * @param double $remise_percent Pourcentage de remise de la ligne - * @param int $date_start Date de debut de validite du service - * @param int $date_end Date de fin de validite du service + * @param double $remise_percent Percentage discount of the line + * @param int $date_start Date de debut de validite du service + * @param int $date_end Date de fin de validite du service * @param double $txtva VAT Rate (Can be '8.5', '8.5 (ABC)') * @param double $txlocaltax1 Local tax 1 rate * @param double $txlocaltax2 Local tax 2 rate diff --git a/htdocs/contrat/class/contrat.class.php b/htdocs/contrat/class/contrat.class.php index f083ef59a2d..f89ad5e7307 100644 --- a/htdocs/contrat/class/contrat.class.php +++ b/htdocs/contrat/class/contrat.class.php @@ -1345,7 +1345,7 @@ class Contrat extends CommonObject * @param float $txlocaltax1 Local tax 1 rate * @param float $txlocaltax2 Local tax 2 rate * @param int $fk_product Id produit - * @param float $remise_percent Pourcentage de remise de la ligne + * @param float $remise_percent Percentage discount of the line * @param int $date_start Date de debut prevue * @param int $date_end Date de fin prevue * @param string $price_base_type HT or TTC @@ -1552,7 +1552,7 @@ class Contrat extends CommonObject * @param string $desc Description de la ligne * @param float $pu Prix unitaire * @param int $qty Quantite - * @param float $remise_percent Pourcentage de remise de la ligne + * @param float $remise_percent Percentage discount of the line * @param int $date_start Date de debut prevue * @param int $date_end Date de fin prevue * @param float $tvatx Taux TVA diff --git a/htdocs/fourn/class/fournisseur.facture.class.php b/htdocs/fourn/class/fournisseur.facture.class.php index e30ae227aa0..4450ee611f8 100644 --- a/htdocs/fourn/class/fournisseur.facture.class.php +++ b/htdocs/fourn/class/fournisseur.facture.class.php @@ -1541,7 +1541,7 @@ class FactureFournisseur extends CommonInvoice * @param double $txlocaltax2 LocalTax2 Rate * @param double $qty Quantite * @param int $fk_product Product/Service ID predefined - * @param double $remise_percent Pourcentage de remise de la ligne + * @param double $remise_percent Percentage discount of the line * @param date $date_start Date de debut de validite du service * @param date $date_end Date de fin de validite du service * @param string $ventil Code de ventilation comptable @@ -1794,7 +1794,7 @@ class FactureFournisseur extends CommonInvoice * @param double $price_base_type HT or TTC * @param int $info_bits Miscellaneous informations of line * @param int $type Type of line (0=product, 1=service) - * @param double $remise_percent Pourcentage de remise de la ligne + * @param double $remise_percent Percentage discount of the line * @param int $notrigger Disable triggers * @param timestamp $date_start Date start of service * @param timestamp $date_end Date end of service diff --git a/htdocs/supplier_proposal/class/supplier_proposal.class.php b/htdocs/supplier_proposal/class/supplier_proposal.class.php index 3ce2ee71438..90e6a10c0a0 100644 --- a/htdocs/supplier_proposal/class/supplier_proposal.class.php +++ b/htdocs/supplier_proposal/class/supplier_proposal.class.php @@ -374,7 +374,7 @@ class SupplierProposal extends CommonObject * @param double $txlocaltax1 Local tax 1 rate * @param double $txlocaltax2 Local tax 2 rate * @param int $fk_product Product/Service ID predefined - * @param double $remise_percent Pourcentage de remise de la ligne + * @param double $remise_percent Percentage discount of the line * @param string $price_base_type HT or TTC * @param double $pu_ttc Prix unitaire TTC * @param int $info_bits Bits de type de lignes From 8657ff034b90bd1a37673ef0612172022420a6a0 Mon Sep 17 00:00:00 2001 From: ptibogxiv Date: Mon, 18 Mar 2019 13:48:16 +0100 Subject: [PATCH 11/13] Update card.php --- htdocs/product/card.php | 28 +++++++--------------------- 1 file changed, 7 insertions(+), 21 deletions(-) diff --git a/htdocs/product/card.php b/htdocs/product/card.php index 0f80e171529..15835361191 100644 --- a/htdocs/product/card.php +++ b/htdocs/product/card.php @@ -1024,14 +1024,10 @@ else // Duration if ($type == 1) { - print '' . $langs->trans("Duration") . '  '; - print ''.$langs->trans("Minute").' '; - print ''.$langs->trans("Hour").' '; - print ''.$langs->trans("Day").' '; - print ''.$langs->trans("Week").' '; - print ''.$langs->trans("Month").' '; - print ''.$langs->trans("Year").' '; - print ''; + print ''.$langs->trans("Duration").''; + print ''; + print $formproduct->select_measuring_units("duration_unit", "time"); + print ''; } if ($type != 1) // Nature, Weight and volume only applies to products and not to services @@ -1404,19 +1400,9 @@ else if ($object->isService()) { // Duration - print ''.$langs->trans("Duration").''; - print '  '; - print 'duration_unit=='i'?' checked':'').'>'.$langs->trans("Minute"); - print '  '; - print 'duration_unit=='h'?' checked':'').'>'.$langs->trans("Hour"); - print '  '; - print 'duration_unit=='d'?' checked':'').'>'.$langs->trans("Day"); - print '  '; - print 'duration_unit=='w'?' checked':'').'>'.$langs->trans("Week"); - print '  '; - print 'duration_unit=='m'?' checked':'').'>'.$langs->trans("Month"); - print '  '; - print 'duration_unit=='y'?' checked':'').'>'.$langs->trans("Year"); + print ''.$langs->trans("Duration").''; + print ' '; + print $formproduct->select_measuring_units("duration_unit", "time", $object->duration_unit); print ''; } else From 5a48cd2f6a8ba1dc104fed3cdacccdc986eaa491 Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Mon, 18 Mar 2019 14:01:03 +0100 Subject: [PATCH 12/13] translation --- htdocs/cashdesk/class/Facturation.class.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/htdocs/cashdesk/class/Facturation.class.php b/htdocs/cashdesk/class/Facturation.class.php index cbaacee2a2f..f565e86aa1b 100644 --- a/htdocs/cashdesk/class/Facturation.class.php +++ b/htdocs/cashdesk/class/Facturation.class.php @@ -21,7 +21,7 @@ include_once DOL_DOCUMENT_ROOT.'/core/lib/price.lib.php'; /** - * Class ot manage invoices for pos module (cashdesk) + * Class to manage invoices for pos module (cashdesk) */ class Facturation { @@ -84,7 +84,7 @@ class Facturation } - // Methodes de traitement des donnees + // Data processing methods /** @@ -124,14 +124,14 @@ class Facturation // Define part of HT, VAT, TTC $resultarray=calcul_price_total($this->qte, $this->prix(), $this->remisePercent(), $txtva, -1, -1, 0, 'HT', $vat_npr, $product->type, $mysoc, $localtaxarray); - // Calcul du total ht sans remise + // Calculation of total HT without discount $total_ht = $resultarray[0]; $total_vat = $resultarray[1]; $total_ttc = $resultarray[2]; $total_localtax1 = $resultarray[9]; $total_localtax2 = $resultarray[10]; - // Calcul du montant de la remise + // Calculation of the discount amount if ($this->remisePercent()) { $remise_percent = $this->remisePercent(); @@ -201,7 +201,7 @@ class Facturation } /** - * Calcul du total HT, total TTC et montants TVA + * Calculation of total HT, total TTC and VAT amounts * * @return int Total */ @@ -240,7 +240,7 @@ class Facturation } /** - * Reinitialisation des attributs + * Reset attributes * * @return void */ @@ -257,7 +257,7 @@ class Facturation } /** - * Reinitialisation des attributs persistants + * Resetting persistent attributes * * @return void */ @@ -275,7 +275,7 @@ class Facturation } - // Methodes de modification des attributs proteges + // Methods for modifying protected attributes /** * Getter for id @@ -560,7 +560,7 @@ class Facturation } /** - * Get totla HT + * Get total HT * * @param int $aTotalHt Total amount * @return int Total amount From 03cd321aeb9a597fe8534766db0ca55af3d8bc9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20FRANCE?= Date: Mon, 18 Mar 2019 20:18:38 +0100 Subject: [PATCH 13/13] phpcs fix --- htdocs/core/lib/parsemd.lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/core/lib/parsemd.lib.php b/htdocs/core/lib/parsemd.lib.php index a686278d82c..efe9494aaa9 100644 --- a/htdocs/core/lib/parsemd.lib.php +++ b/htdocs/core/lib/parsemd.lib.php @@ -84,4 +84,4 @@ function dolMd2Asciidoc($content, $parser = 'dolibarr', $replaceimagepath = null //} return $content; -} \ No newline at end of file +}