fixed order of achievement title and count
This commit is contained in:
commit
df3dd6466c
3459 changed files with 594367 additions and 0 deletions
45
www/analytics/core/Updates/1.7.2-rc7.php
Executable file
45
www/analytics/core/Updates/1.7.2-rc7.php
Executable file
|
|
@ -0,0 +1,45 @@
|
|||
<?php
|
||||
/**
|
||||
* Piwik - Open source web analytics
|
||||
*
|
||||
* @link http://piwik.org
|
||||
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
|
||||
*
|
||||
*/
|
||||
|
||||
namespace Piwik\Updates;
|
||||
|
||||
use Piwik\Common;
|
||||
use Piwik\Db;
|
||||
use Piwik\Updater;
|
||||
use Piwik\Updates;
|
||||
|
||||
/**
|
||||
*/
|
||||
class Updates_1_7_2_rc7 extends Updates
|
||||
{
|
||||
static function getSql()
|
||||
{
|
||||
return array(
|
||||
'ALTER TABLE `' . Common::prefixTable('user_dashboard') . '`
|
||||
ADD `name` VARCHAR( 100 ) NULL DEFAULT NULL AFTER `iddashboard`' => false,
|
||||
);
|
||||
}
|
||||
|
||||
static function update()
|
||||
{
|
||||
try {
|
||||
$dashboards = Db::fetchAll('SELECT * FROM `' . Common::prefixTable('user_dashboard') . '`');
|
||||
foreach ($dashboards AS $dashboard) {
|
||||
$idDashboard = $dashboard['iddashboard'];
|
||||
$login = $dashboard['login'];
|
||||
$layout = $dashboard['layout'];
|
||||
$layout = html_entity_decode($layout);
|
||||
$layout = str_replace("\\\"", "\"", $layout);
|
||||
Db::query('UPDATE `' . Common::prefixTable('user_dashboard') . '` SET layout = ? WHERE iddashboard = ? AND login = ?', array($layout, $idDashboard, $login));
|
||||
}
|
||||
Updater::updateDatabase(__FILE__, self::getSql());
|
||||
} catch (\Exception $e) {
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue