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
In Smarty 3.1.27 {$smarty.get.q} becomes $_GET['q'] as it should, however in the master branch {$smarty.get.q} becomes $_GET instead of $_GET['q']
// test.php include 'smarty-master/libs/Smarty.class.php'; $smarty = new \Smarty(); $smarty->fetch('global_variables.tpl');
// global_variables.tpl {$smarty.get.q|print_r} {$smarty.post.q|print_r}
The text was updated successfully, but these errors were encountered:
- bugfix compiling super globals like {$smarty.get.foo} did fail in t…
0e4039f
…he master branch #77
The fix is now in the master branch
Sorry, something went wrong.
Merge pull request smarty-php#77 from think-ahead/release-2.0.7.3
5905a53
Merge release 2.0.7.3 into master branch
No branches or pull requests
In Smarty 3.1.27 {$smarty.get.q} becomes $_GET['q'] as it should, however in the master branch {$smarty.get.q} becomes $_GET instead of $_GET['q']
// test.php
include 'smarty-master/libs/Smarty.class.php';
$smarty = new \Smarty();
$smarty->fetch('global_variables.tpl');
// global_variables.tpl
{$smarty.get.q|print_r}
{$smarty.post.q|print_r}
The text was updated successfully, but these errors were encountered: