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:
-rw-r--r--core/Option.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Option.php b/core/Option.php
index 4b9fc05985..771f080432 100644
--- a/core/Option.php
+++ b/core/Option.php
@@ -181,7 +181,7 @@ class Option
}
$value = Db::fetchOne('SELECT option_value FROM `' . Common::prefixTable('option') . '` ' .
- 'WHERE option_name = ?', $name);
+ 'WHERE option_name = ?', [$name]);
$this->all[$name] = $value;
return $value;