Fix PDF script path

This commit is contained in:
Jean-Philippe Guérard 2012-01-10 01:10:06 +01:00
parent 63837ebd55
commit 93e2d59457

View File

@ -39,7 +39,7 @@
session_start(); session_start();
require_once('fpdf/phpToPDF.php'); require_once('php2pdf/phpToPDF.php');
include_once('fonctions.php'); include_once('fonctions.php');
$dsondage = get_sondage_from_id($_POST['numsondage']); $dsondage = get_sondage_from_id($_POST['numsondage']);
@ -81,4 +81,4 @@ $PDF->SetFont('Arial','B',8);
$PDF->Text(35,275,"Cette lettre de convocation a été générée automatiquement par ".NOMAPPLICATION." sur ".get_server_name()); $PDF->Text(35,275,"Cette lettre de convocation a été générée automatiquement par ".NOMAPPLICATION." sur ".get_server_name());
//Sortie //Sortie
$PDF->Output(); $PDF->Output();