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
Wrapping the svg template file in the attachment svg.tpl.txt with {literal}{/literal} throws the following exception:
{literal}{/literal}
Fatal Error Unexpected input at line 1: in file: /var/www/smarty/sysplugins/smarty_internal_templatelexer.php at line: 912
It appears that it has trouble handling the amount of content inside the {literal}{/literal}. Without the literal it throws a similar error:
Fatal Error Unexpected input at line1: in file: /var/www/smarty/sysplugins/smarty_internal_templatelexer.php at line: 368
It works fine if you remove a line or 2 or use a previous version of Smarty. (Note: I upgraded from 3.1.31 -> 3.1.33 so I haven't tested 3.1.32)
The text was updated successfully, but these errors were encountered:
- bugfix large plain text template sections without a Smarty tag > 70…
a6cb648
…0kB could could fail in version 3.1.32 and 3.1.33 because PHP preg_match() restrictions #488
This fix is now in the master branch.
In 3.1.32 and 3.1.33 you could as workaround split the large plain text section somewhere in the middle with
... {/literal}{literal}...
Sorry, something went wrong.
No branches or pull requests
Wrapping the svg template file in the attachment svg.tpl.txt with
{literal}{/literal}
throws the following exception:It appears that it has trouble handling the amount of content inside the {literal}{/literal}. Without the literal it throws a similar error:
It works fine if you remove a line or 2 or use a previous version of Smarty. (Note: I upgraded from 3.1.31 -> 3.1.33 so I haven't tested 3.1.32)
The text was updated successfully, but these errors were encountered: