Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorLukas Winkler <git@lw1.at>2022-06-13 10:45:00 +0300
committerGitHub <noreply@github.com>2022-06-13 10:45:00 +0300
commitce032f5a6be85383a0036af8bea4fa2872b7ccce (patch)
tree8c30ea72d6ec16d7e9628a3fd4c089fa769553b7 /core
parenta41afe53a99c2ef1654ef08fbfd08e1c975f81db (diff)
remove depracted dollar brace string interpolation (#19344)
https://wiki.php.net/rfc/deprecate_dollar_brace_string_interpolation
Diffstat (limited to 'core')
-rw-r--r--core/testMinimumPhpVersion.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/testMinimumPhpVersion.php b/core/testMinimumPhpVersion.php
index efeb530f68..b0cce520ed 100644
--- a/core/testMinimumPhpVersion.php
+++ b/core/testMinimumPhpVersion.php
@@ -127,7 +127,7 @@ if (!function_exists('Piwik_GetErrorMessagePage')) {
bool $writeErrorLog = true
) {
if ($writeErrorLog) {
- error_log(sprintf("${errorLogPrefix}Error in Matomo: %s", str_replace("\n", " ", strip_tags($message))));
+ error_log(sprintf("{$errorLogPrefix}Error in Matomo: %s", str_replace("\n", " ", strip_tags($message))));
}
if (!headers_sent()) {