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:
authorhe667 <helium667@hotmail.com>2014-05-15 12:47:23 +0400
committerhe667 <helium667@hotmail.com>2014-05-15 12:47:23 +0400
commita4d4eddec65acbcbcb42ab38af4a75ba9b232036 (patch)
tree36298b45d11bdb9da75eaa226342e2320d9d28db /core/Option.php
parentc04ddf6f6de3eb9df1ff192af6728877a408b7f9 (diff)
[BUG] Missing space between the from and the where sql statement in the core/Option.php getValue function
Diffstat (limited to 'core/Option.php')
-rw-r--r--core/Option.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Option.php b/core/Option.php
index 4a98138da0..7df07a042d 100644
--- a/core/Option.php
+++ b/core/Option.php
@@ -163,7 +163,7 @@ class Option
return $this->all[$name];
}
$value = Db::fetchOne('SELECT option_value ' .
- 'FROM `' . Common::prefixTable('option') . '`' .
+ 'FROM `' . Common::prefixTable('option') . '` ' .
'WHERE option_name = ?', $name);
if ($value === false) {
return false;