Fix: modification du chemin

This commit is contained in:
Regis Houssin 2007-04-05 17:30:29 +00:00
parent 41fb66b438
commit 3444ec3239
5 changed files with 1972 additions and 1972 deletions

View File

@ -17,7 +17,7 @@
// limitations under the License. // limitations under the License.
// //
require_once("fpdf.php"); require_once(FPDF_PATH.'fpdf.php');
class fpdf_tpl extends fpdf { class fpdf_tpl extends fpdf {
/** /**

View File

@ -31,8 +31,8 @@ define ('PDF_TYPE_STREAM', 10);
ini_set('auto_detect_line_endings',1); // Strongly required! ini_set('auto_detect_line_endings',1); // Strongly required!
require_once("fpdf_tpl.php"); require_once(FPDF_PATH.'fpdf_tpl.php');
require_once("fpdi_pdf_parser.php"); require_once(FPDF_PATH.'fpdi_pdf_parser.php');
class fpdi extends fpdf_tpl { class fpdi extends fpdf_tpl {

View File

@ -41,8 +41,8 @@ if (!defined ('PDF_TYPE_STREAM'))
define ('PDF_TYPE_STREAM', 10); define ('PDF_TYPE_STREAM', 10);
require_once("wrapper_functions.php"); require_once(FPDF_PATH.'wrapper_functions.php');
require_once("pdf_parser.php"); require_once(FPDF_PATH.'pdf_parser.php');
class fpdi_pdf_parser extends pdf_parser { class fpdi_pdf_parser extends pdf_parser {

View File

@ -20,7 +20,7 @@
* * * *
****************************************************************************/ ****************************************************************************/
require_once("fpdi.php"); require_once(FPDF_PATH.'fpdi.php');
class FPDI_Protection extends fpdi { class FPDI_Protection extends fpdi {

View File

@ -40,7 +40,7 @@ if (!defined ('PDF_TYPE_OBJECT'))
if (!defined ('PDF_TYPE_STREAM')) if (!defined ('PDF_TYPE_STREAM'))
define ('PDF_TYPE_STREAM', 10); define ('PDF_TYPE_STREAM', 10);
require_once("pdf_context.php"); require_once(FPDF_PATH.'pdf_context.php');
class pdf_parser { class pdf_parser {