Skip to content

Commit

Permalink
Update tcpdf.php
Browse files Browse the repository at this point in the history
Since the version 6.7.4, the "0" is considered like empty string and not displayed
  • Loading branch information
jlouche committed Apr 25, 2024
1 parent 951eabf commit 942a569
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tcpdf.php
Expand Up @@ -16440,7 +16440,7 @@ protected function getHtmlDomArray($html) {
)
);

if(empty($html)) {
if(empty($html) && $html != '0') {
return $dom;
}
// array of CSS styles ( selector => properties).
Expand Down

0 comments on commit 942a569

Please sign in to comment.