From 750f415f2eb4e93f9adf0b5577d2c9ce9e4da700 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Tue, 1 Jun 2010 21:33:48 +0000 Subject: [PATCH] Fix: Wrong include --- htdocs/compta/facture.php | 2 +- htdocs/core/class/discount.class.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/compta/facture.php b/htdocs/compta/facture.php index 3521839a23f..b9a94675da3 100644 --- a/htdocs/compta/facture.php +++ b/htdocs/compta/facture.php @@ -282,7 +282,7 @@ if ($_POST['action'] == "setabsolutediscount" && $user->rights->facture->creer) } if (! empty($_POST["remise_id_for_payment"])) { - require_once(DOL_DOCUMENT_ROOT.'/core/discount.class.php'); + require_once(DOL_DOCUMENT_ROOT.'/core/class/discount.class.php'); $discount = new DiscountAbsolute($db); $discount->fetch($_POST["remise_id_for_payment"]); diff --git a/htdocs/core/class/discount.class.php b/htdocs/core/class/discount.class.php index 6aa300c1c6a..b137bd9bef4 100644 --- a/htdocs/core/class/discount.class.php +++ b/htdocs/core/class/discount.class.php @@ -18,7 +18,7 @@ */ /** - * \file htdocs/core/discount.class.php + * \file htdocs/core/class/discount.class.php * \ingroup propal facture commande * \brief Fichier de la classe de gestion des remises * \version $Id$