diff options
| author | 2022-06-19 20:10:13 +0200 | |
|---|---|---|
| committer | 2022-06-19 20:10:13 +0200 | |
| commit | dcc77ee343d51e32e1234c63c258d9b4e4de8a81 (patch) | |
| tree | 26722be6e9f5bd7e9500d20d32372c7a8f4b9900 /lib | |
| parent | a90d93979f63b48c76308ae26c845d8b58f5368d (diff) | |
Initial support for PHP 8.2 (#4421)
* Initial support for PHP 8.2
Using dev image `freshrss/freshrss:latest` https://github.com/FreshRSS/FreshRSS/pull/4420
* Deprecated string interpolation
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/Minz/ActionException.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Minz/ActionException.php b/lib/Minz/ActionException.php index 82f250958..53f0aab04 100644 --- a/lib/Minz/ActionException.php +++ b/lib/Minz/ActionException.php @@ -4,7 +4,7 @@ class Minz_ActionException extends Minz_Exception { // Just for security, as we are not supposed to get non-alphanumeric characters. $action_name = rawurlencode($action_name); - $message = "Invalid action name “${action_name}” for controller “${controller_name}”."; + $message = "Invalid action name “{$action_name}” for controller “{$controller_name}”."; parent::__construct ($message, $code); } } |
