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:
Diffstat (limited to 'core/Updates/1.7.2-rc5.php')
-rw-r--r--core/Updates/1.7.2-rc5.php26
1 files changed, 13 insertions, 13 deletions
diff --git a/core/Updates/1.7.2-rc5.php b/core/Updates/1.7.2-rc5.php
index f6f400a3cf..6d9e88a8b2 100644
--- a/core/Updates/1.7.2-rc5.php
+++ b/core/Updates/1.7.2-rc5.php
@@ -14,19 +14,19 @@
*/
class Piwik_Updates_1_7_2_rc5 extends Piwik_Updates
{
- static function getSql($schema = 'Myisam')
- {
- return array(
- 'ALTER TABLE `'. Piwik_Common::prefixTable('pdf') .'`
+ static function getSql($schema = 'Myisam')
+ {
+ return array(
+ 'ALTER TABLE `' . Piwik_Common::prefixTable('pdf') . '`
CHANGE `aggregate_reports_format` `display_format` TINYINT(1) NOT NULL' => false
- );
- }
+ );
+ }
- static function update()
- {
- try {
- Piwik_Updater::updateDatabase(__FILE__, self::getSql());
- }
- catch(Exception $e){}
- }
+ static function update()
+ {
+ try {
+ Piwik_Updater::updateDatabase(__FILE__, self::getSql());
+ } catch (Exception $e) {
+ }
+ }
}