Leave   lowercase when using text-transform (#403)

When using text-transform: uppercase, convert " " back to lowercase " " so that it is recognized as a space by Adobe Acrobat rather than printing out " "
This commit is contained in:
Jay Davis 2021-12-28 06:47:59 -05:00 committed by GitHub
parent 172540dcbf
commit f1a29a1a73
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17129,6 +17129,7 @@ class TCPDF {
}
}
}
$element = preg_replace("/ /i", " ", $element);
}
$dom[$key]['value'] = stripslashes($this->unhtmlentities($element));
}