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
diff options
context:
space:
mode:
authorStefan Giehl <stefan@matomo.org>2021-12-07 22:44:01 +0300
committerGitHub <noreply@github.com>2021-12-07 22:44:01 +0300
commit4f5cda954a6b64677f9b48223a91e0ec8785e055 (patch)
treef1ff518dc59ac88c2e30448dee56fe1b7ab656a3 /plugins/Diagnostics
parentcd2cd0c041e25817a7887d7dcc7dfc6d232b9788 (diff)
Fix 'Call to undefined function Piwik\piwik_fix_lbrace()' (#18461)
Diffstat (limited to 'plugins/Diagnostics')
-rw-r--r--plugins/Diagnostics/Diagnostic/DiagnosticResult.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/Diagnostics/Diagnostic/DiagnosticResult.php b/plugins/Diagnostics/Diagnostic/DiagnosticResult.php
index a66a4a3245..466396ec56 100644
--- a/plugins/Diagnostics/Diagnostic/DiagnosticResult.php
+++ b/plugins/Diagnostics/Diagnostic/DiagnosticResult.php
@@ -9,7 +9,6 @@
namespace Piwik\Plugins\Diagnostics\Diagnostic;
use Piwik\Common;
-use function Piwik\piwik_fix_lbrace;
/**
* The result of a diagnostic.
@@ -71,7 +70,7 @@ class DiagnosticResult
}
if ($escapeComment) {
- $comment = piwik_fix_lbrace(Common::sanitizeInputValue($comment));
+ $comment = Common::fixLbrace(Common::sanitizeInputValue($comment));
}
return self::singleResult($label, self::STATUS_INFORMATIONAL, $comment);