1
This commit is contained in:
BIN
vendor/fpdf/bg.png
vendored
Normal file
BIN
vendor/fpdf/bg.png
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 159 KiB |
2
vendor/fpdf/fpdf.php
vendored
2
vendor/fpdf/fpdf.php
vendored
@@ -73,7 +73,7 @@ var $PDFVersion; // PDF version number
|
||||
* Public methods *
|
||||
* *
|
||||
*******************************************************************************/
|
||||
function FPDF($orientation='P', $unit='mm', $size='A4')
|
||||
function __construct($orientation='P', $unit='mm', $size='A4')
|
||||
{
|
||||
// Some checks
|
||||
$this->_dochecks();
|
||||
|
||||
14
vendor/fpdi/fpdi.php
vendored
14
vendor/fpdi/fpdi.php
vendored
@@ -559,11 +559,15 @@ class FPDI extends FPDF_TPL
|
||||
$this->_straightOut('<<');
|
||||
|
||||
reset ($value[1]);
|
||||
|
||||
while (list($k, $v) = each($value[1])) {
|
||||
$this->_straightOut($k . ' ');
|
||||
$this->_writeValue($v);
|
||||
}
|
||||
|
||||
foreach ($value[1] as $k => $v){
|
||||
$this->_straightOut($k . ' ');
|
||||
$this->_writeValue($v);
|
||||
}
|
||||
// while (list($k, $v) = each($value[1])) {
|
||||
// $this->_straightOut($k . ' ');
|
||||
// $this->_writeValue($v);
|
||||
// }
|
||||
|
||||
$this->_straightOut('>>');
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user