mirror of
https://github.com/tecnickcom/TCPDF.git
synced 2025-03-21 14:39:40 +01:00
Second parameter of TCPDF::cell() must be a number (#283)
Co-authored-by: Nicola Asuni <nicolaasuni@users.noreply.github.com>
This commit is contained in:
parent
c29df4acb4
commit
da030d11b7
@ -15529,7 +15529,7 @@ class TCPDF {
|
||||
$this->y = $y + $vpadding + $barh;
|
||||
$cellpadding = $this->cell_padding;
|
||||
$this->SetCellPadding(0);
|
||||
$this->Cell($txtwidth, '', $label, 0, 0, 'C', false, '', $style['stretchtext'], false, 'T', 'T');
|
||||
$this->Cell($txtwidth, 0, $label, 0, 0, 'C', false, '', $style['stretchtext'], false, 'T', 'T');
|
||||
$this->cell_padding = $cellpadding;
|
||||
}
|
||||
// restore original direction
|
||||
|
Loading…
x
Reference in New Issue
Block a user