From d10990a09999ace14d8500efe17fa7666fd0835a Mon Sep 17 00:00:00 2001 From: Nathan Boiron Date: Sat, 24 Jun 2023 12:46:56 +0200 Subject: [PATCH] =?UTF-8?q?suppression=20de=20param=C3=A8tres=20inutilis?= =?UTF-8?q?=C3=A9s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit La méthode `obtenirParNumeroFacture` n'a qu'un seul argument. --- sources/Afup/Comptabilite/Facture.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/Afup/Comptabilite/Facture.php b/sources/Afup/Comptabilite/Facture.php index f7fa3d8d0..897cf4e3b 100644 --- a/sources/Afup/Comptabilite/Facture.php +++ b/sources/Afup/Comptabilite/Facture.php @@ -589,7 +589,7 @@ function genererFacture($reference, $chemin = null) function envoyerFacture($reference) { $configuration = $GLOBALS['AFUP_CONF']; - $personne = $this->obtenirParNumeroFacture($reference, 'email, nom, prenom'); + $personne = $this->obtenirParNumeroFacture($reference); $sujet = "Facture AFUP\n";