- Issue created by @arx-e
I was getting this error while using the module with TCPDF library version 6.6.2
TypeError: Unsupported operand types: float + string in TCPDF->Write() (line 6442 of ... /tcpdf/tcpdf.php).
The issue has been solved by the following modification to line 6442 of tcpdf.php:
from this
$maxy = $this->y + $maxh - max($row_height, $h);
to this
$maxy = $this->y + (float)$maxh - max($row_height, $h);
I have filed the issue at TCPDF github page here:
https://github.com/tecnickcom/TCPDF/issues/608
Maybe a warning should be added in the documentation about this issue?