Fix: include incorrect

This commit is contained in:
Laurent Destailleur 2007-10-09 22:23:14 +00:00
parent a372bd86c3
commit c2dd5f77e2
3 changed files with 38 additions and 7 deletions

View File

@ -1,5 +1,6 @@
<?PHP
/* Copyright (C) 2005-2006 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2007 Laurent Destailleur <eldy@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -17,12 +18,22 @@
* or see http://www.gnu.org/
*
* $Id$
* $Source$
*
*/
/**
\file htdocs/compta/export/ComptaJournalPaiement.php
\ingroup compta
\brief Fichier de la classe export compta journal
\version $Revision$
*/
require_once(DOL_DOCUMENT_ROOT.'/compta/export/ComptaJournalPdf.class.php');
/**
\class ComptaJournalPaiement
\brief Classe export compta journal
*/
class ComptaJournalPaiement {
function ComptaJournalPaiement ($db=0)

View File

@ -17,13 +17,22 @@
* or see http://www.gnu.org/
*
* $Id$
* $Source$
*
*/
require_once(FPDF_PATH.'fpdi_protection.php');
/**
\file htdocs/compta/export/ComptaJournalPdf.php
\ingroup compta
\brief Fichier de la classe export compta journal
\version $Revision$
*/
require_once(DOL_DOCUMENT_ROOT.'/includes/fpdf/fpdfi/fpdi_protection.php');
/**
\class ComptaJournalPdf
\brief Classe export compta journal
*/
class ComptaJournalPdf extends FPDF {
function Footer()

View File

@ -1,5 +1,6 @@
<?PHP
/* Copyright (C) 2005-2006 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2007 Laurent Destailleur <eldy@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -17,12 +18,22 @@
* or see http://www.gnu.org/
*
* $Id$
* $Source$
*
*/
/**
\file htdocs/compta/export/ComptaJournalVente.php
\ingroup compta
\brief Fichier de la classe export compta journal
\version $Revision$
*/
require_once(DOL_DOCUMENT_ROOT.'/compta/export/ComptaJournalPdf.class.php');
/**
\class ComptaJournalVente
\brief Classe export compta journal
*/
class ComptaJournalVente {
function ComptaJournalVente ($db=0)