We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Template processor improvements:
in setValueForPart() method this strings manipulation calls for each document header, footer and main part:
if (substr($search, 0, 2) !== '${' && substr($search, -1) !== '}') { $search = '${' . $search . '}'; } if (!String::isUTF8($replace)) { $replace = utf8_encode($replace); }
Move it to setValue() method to reduce time of these operations.
The text was updated successfully, but these errors were encountered:
Merge pull request #617 from kazitanvirahsan/develop
529edcb
Template processor setValue() improvements #614
Merged. Thank you, guys.
Sorry, something went wrong.
No branches or pull requests
Template processor improvements:
in setValueForPart() method this strings manipulation calls for each document header, footer and main part:
Move it to setValue() method to reduce time of these operations.
The text was updated successfully, but these errors were encountered: