Fix: modification du chemin
This commit is contained in:
parent
41fb66b438
commit
3444ec3239
@ -17,7 +17,7 @@
|
||||
// limitations under the License.
|
||||
//
|
||||
|
||||
require_once("fpdf.php");
|
||||
require_once(FPDF_PATH.'fpdf.php');
|
||||
|
||||
class fpdf_tpl extends fpdf {
|
||||
/**
|
||||
|
||||
@ -31,8 +31,8 @@ define ('PDF_TYPE_STREAM', 10);
|
||||
|
||||
ini_set('auto_detect_line_endings',1); // Strongly required!
|
||||
|
||||
require_once("fpdf_tpl.php");
|
||||
require_once("fpdi_pdf_parser.php");
|
||||
require_once(FPDF_PATH.'fpdf_tpl.php');
|
||||
require_once(FPDF_PATH.'fpdi_pdf_parser.php');
|
||||
|
||||
|
||||
class fpdi extends fpdf_tpl {
|
||||
|
||||
@ -41,8 +41,8 @@ if (!defined ('PDF_TYPE_STREAM'))
|
||||
define ('PDF_TYPE_STREAM', 10);
|
||||
|
||||
|
||||
require_once("wrapper_functions.php");
|
||||
require_once("pdf_parser.php");
|
||||
require_once(FPDF_PATH.'wrapper_functions.php');
|
||||
require_once(FPDF_PATH.'pdf_parser.php');
|
||||
|
||||
class fpdi_pdf_parser extends pdf_parser {
|
||||
|
||||
|
||||
@ -20,7 +20,7 @@
|
||||
* *
|
||||
****************************************************************************/
|
||||
|
||||
require_once("fpdi.php");
|
||||
require_once(FPDF_PATH.'fpdi.php');
|
||||
|
||||
class FPDI_Protection extends fpdi {
|
||||
|
||||
|
||||
@ -40,7 +40,7 @@ if (!defined ('PDF_TYPE_OBJECT'))
|
||||
if (!defined ('PDF_TYPE_STREAM'))
|
||||
define ('PDF_TYPE_STREAM', 10);
|
||||
|
||||
require_once("pdf_context.php");
|
||||
require_once(FPDF_PATH.'pdf_context.php');
|
||||
|
||||
class pdf_parser {
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user