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:
authorLukas Winkler <git@lw1.at>2020-07-06 21:41:37 +0300
committerGitHub <noreply@github.com>2020-07-06 21:41:37 +0300
commite41fdc98451fd1c1cdd6fdd673eb5dbc08d5fc98 (patch)
treeb7c6529165140d522f91bb338b7de1646478ba87 /plugins
parent42920ac538e7bfaaff8309c116f84dcac7d44c1e (diff)
don't use create_function anywhere (#16181)
Diffstat (limited to 'plugins')
-rw-r--r--plugins/Diagnostics/Diagnostic/PhpFunctionsCheck.php2
-rw-r--r--plugins/Installation/lang/en.json1
2 files changed, 0 insertions, 3 deletions
diff --git a/plugins/Diagnostics/Diagnostic/PhpFunctionsCheck.php b/plugins/Diagnostics/Diagnostic/PhpFunctionsCheck.php
index 99179468fd..fdde86e4e6 100644
--- a/plugins/Diagnostics/Diagnostic/PhpFunctionsCheck.php
+++ b/plugins/Diagnostics/Diagnostic/PhpFunctionsCheck.php
@@ -57,7 +57,6 @@ class PhpFunctionsCheck implements Diagnostic
{
return array(
'debug_backtrace',
- 'create_function',
'eval',
'hash',
'gzcompress',
@@ -100,7 +99,6 @@ class PhpFunctionsCheck implements Diagnostic
{
$messages = array(
'debug_backtrace' => 'Installation_SystemCheckDebugBacktraceHelp',
- 'create_function' => 'Installation_SystemCheckCreateFunctionHelp',
'eval' => 'Installation_SystemCheckEvalHelp',
'hash' => 'Installation_SystemCheckHashHelp',
'gzcompress' => 'Installation_SystemCheckGzcompressHelp',
diff --git a/plugins/Installation/lang/en.json b/plugins/Installation/lang/en.json
index cd78595a6c..ffe9c33f2f 100644
--- a/plugins/Installation/lang/en.json
+++ b/plugins/Installation/lang/en.json
@@ -69,7 +69,6 @@
"SuperUserSetupSuccess": "Super User created successfully!",
"SystemCheck": "System Check",
"SystemCheckAutoUpdateHelp": "Note: Matomo's One Click update requires write-permissions to the Matomo folder and its contents.",
- "SystemCheckCreateFunctionHelp": "Matomo uses anonymous functions for callbacks.",
"SystemCheckDatabaseExtensions": "MySQL extensions",
"SystemCheckDatabaseHelp": "Matomo requires either the mysqli extension or both the PDO and pdo_mysql extensions.",
"SystemCheckDatabaseSSL": "Database SSL Connection",