fixes for PHP 8

This commit is contained in:
2022-12-30 14:17:24 -07:00
parent 0a47a984e0
commit 227b3d503c
2 changed files with 25 additions and 11 deletions

View File

@@ -571,7 +571,7 @@ class FPDI extends FPDF_TPL
reset ($value[1]);
while (list($k, $v) = each($value[1])) {
foreach ($value[1] as $k => $v) {
$this->_straightOut($k . ' ');
$this->_writeValue($v);
}