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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Hello
My custom tags (extended templates) stoped working after upgrade to 3.8.x. Sample example:
index.html: <F3:CustomTag />
index.php \Template::instance()->extend('CustomTag', function(){
echo 'Custom Tag rendered';
});
\Template::instance()->render('index.html');
Error: Internal Server Error
Undefined array key "_customtag"
I found a change on line 302 of file template.php: $node=&$tree[][strtolower($match[3])];
Old version $node=&$tree[][$match[3]];
The new version (with strtolower) generate undefined array key error (PHP 8.0)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello
My custom tags (extended templates) stoped working after upgrade to 3.8.x. Sample example:
index.html:
<F3:CustomTag />
index.php
\Template::instance()->extend('CustomTag', function(){
echo 'Custom Tag rendered';
});
\Template::instance()->render('index.html');
Error:
Internal Server Error
Undefined array key "_customtag"
I found a change on line 302 of file template.php:
$node=&$tree[][strtolower($match[3])];
Old version
$node=&$tree[][$match[3]];
The new version (with strtolower) generate undefined array key error (PHP 8.0)
The text was updated successfully, but these errors were encountered: