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
Hi,
the composer.json for version 1.3.31 states that it is compatible with php >= 5.2 but it uses the __DIR__ constant which was introduced in PHP 5.3 (https://github.com/smarty-php/smarty/blob/v3.1.31/libs/Smarty.class.php#L38)
php >= 5.2
__DIR__
Either the version should be marked as only 5.3 compatible or should not use PHP 5.3 features.
Best regards
The text was updated successfully, but these errors were encountered:
- bugfix version 3.1.31 did fail under PHP 5.2
f860f7c
#365
Looks like this will be fixed in the next official release. Good work.
Sorry, something went wrong.
The fix is in the master branch and will later be included in the 3.1.32 release
No branches or pull requests
Hi,
the composer.json for version 1.3.31 states that it is compatible with
php >= 5.2
but it uses the__DIR__
constant which was introduced in PHP 5.3 (https://github.com/smarty-php/smarty/blob/v3.1.31/libs/Smarty.class.php#L38)Either the version should be marked as only 5.3 compatible or should not use PHP 5.3 features.
Best regards
The text was updated successfully, but these errors were encountered: