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:
authormattab <matthieu.aubry@gmail.com>2013-03-28 03:42:39 +0400
committermattab <matthieu.aubry@gmail.com>2013-03-28 03:42:40 +0400
commitae4b03163792f0b6e933933e5d37df87dc3fd566 (patch)
treed1d7510a9728f587d3d63ebd03e4ecf3d904838b /core/Updates/0.2.33.php
parent158c2150f5f2e13ece459b8d131244c11b763997 (diff)
Mass conversion of all files to the newly agreed coding standard: PSR 1/2
Converting Piwik core source files, PHP, JS, TPL, CSS More info: http://piwik.org/participate/coding-standards/
Diffstat (limited to 'core/Updates/0.2.33.php')
-rw-r--r--core/Updates/0.2.33.php40
1 files changed, 20 insertions, 20 deletions
diff --git a/core/Updates/0.2.33.php b/core/Updates/0.2.33.php
index 1b0f798957..0ad0b04b1b 100644
--- a/core/Updates/0.2.33.php
+++ b/core/Updates/0.2.33.php
@@ -14,28 +14,28 @@
*/
class Piwik_Updates_0_2_33 extends Piwik_Updates
{
- static function getSql($schema = 'Myisam')
- {
- $sqlarray = array(
- // 0.2.33 [1020]
- 'ALTER TABLE `'. Piwik_Common::prefixTable('user_dashboard') .'`
+ static function getSql($schema = 'Myisam')
+ {
+ $sqlarray = array(
+ // 0.2.33 [1020]
+ 'ALTER TABLE `' . Piwik_Common::prefixTable('user_dashboard') . '`
+ CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci ' => '1146',
+ 'ALTER TABLE `' . Piwik_Common::prefixTable('user_language') . '`
CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci ' => '1146',
- 'ALTER TABLE `'. Piwik_Common::prefixTable('user_language') .'`
- CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci ' => '1146',
- );
+ );
- // alter table to set the utf8 collation
- $tablesToAlter = Piwik::getTablesInstalled(true);
- foreach($tablesToAlter as $table) {
- $sqlarray[ 'ALTER TABLE `'. $table .'`
- CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci ' ] = false;
- }
+ // alter table to set the utf8 collation
+ $tablesToAlter = Piwik::getTablesInstalled(true);
+ foreach ($tablesToAlter as $table) {
+ $sqlarray['ALTER TABLE `' . $table . '`
+ CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci '] = false;
+ }
- return $sqlarray;
- }
+ return $sqlarray;
+ }
- static function update()
- {
- Piwik_Updater::updateDatabase(__FILE__, self::getSql());
- }
+ static function update()
+ {
+ Piwik_Updater::updateDatabase(__FILE__, self::getSql());
+ }
}