Compare commits

..

2 Commits

Author SHA1 Message Date
Simon Wisselink 7c33345d21 add test for this 2024-12-23 01:25:54 +01:00
Simon Wisselink da49620e26 Restore special handling of isset and empty as it was in v4. Fixes #1063 2024-12-23 01:16:47 +01:00
4 changed files with 3 additions and 6 deletions
-4
View File
@@ -6,10 +6,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [5.4.3] - 2024-12-23
- Fix PHP backtraces by qualifying/replacing `call_user_func_array` calls [#1074](https://github.com/smarty-php/smarty/issues/1074)
## [5.4.2] - 2024-11-20
+1
View File
@@ -0,0 +1 @@
- Fix PHP backtraces by qualifying/replacing `call_user_func_array` calls [#1074](https://github.com/smarty-php/smarty/issues/1074)
+1 -1
View File
@@ -54,7 +54,7 @@ class Smarty extends \Smarty\TemplateBase {
/**
* smarty version
*/
const SMARTY_VERSION = '5.4.3';
const SMARTY_VERSION = '5.4.2';
/**
* define caching modes
+1 -1
View File
@@ -1,4 +1,4 @@
FROM php:8.4-cli-bullseye
FROM php:8.4-rc-cli-bullseye
## Basic utilities
RUN apt-get update -yqq && apt-get install -y curl apt-utils git zip unzip