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:
authorrobocoder <anthon.pang@gmail.com>2011-04-04 04:50:42 +0400
committerrobocoder <anthon.pang@gmail.com>2011-04-04 04:50:42 +0400
commitea3733b21e4fcae292f94e583e8d20fea599c079 (patch)
tree2c4ee6f899a9b2c182a97736c0ad6c63af762e54 /core/Updater.php
parentf52308cbf264484d9f437244e0c9d9267b8f86ae (diff)
fixes #2260 - thanks element
git-svn-id: http://dev.piwik.org/svn/trunk@4303 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'core/Updater.php')
-rw-r--r--core/Updater.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Updater.php b/core/Updater.php
index 17670f3da0..92a504677f 100644
--- a/core/Updater.php
+++ b/core/Updater.php
@@ -122,7 +122,7 @@ class Piwik_Updater
}
}
// unfortunately had to extract this query from the Piwik_Option class
- $queries[] = 'UPDATE '.Piwik_Common::prefixTable('option').'
+ $queries[] = 'UPDATE `'.Piwik_Common::prefixTable('option').'`
SET option_value = "' .$fileVersion.'"
WHERE option_name = "'. $this->getNameInOptionTable($componentName).'";';
}