merge
This commit is contained in:
commit
046a724272
4209 changed files with 1186656 additions and 0 deletions
57
www/analytics/core/Updates/0.9.1.php
Normal file
57
www/analytics/core/Updates/0.9.1.php
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
<?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\SettingsServer;
|
||||
use Piwik\Updater;
|
||||
use Piwik\Updates;
|
||||
|
||||
/**
|
||||
*/
|
||||
class Updates_0_9_1 extends Updates
|
||||
{
|
||||
static function getSql()
|
||||
{
|
||||
if (!SettingsServer::isTimezoneSupportEnabled()) {
|
||||
return array();
|
||||
}
|
||||
// @see http://bugs.php.net/46111
|
||||
$timezones = timezone_identifiers_list();
|
||||
$brokenTZ = array();
|
||||
|
||||
foreach ($timezones as $timezone) {
|
||||
$testDate = "2008-08-19 13:00:00 " . $timezone;
|
||||
|
||||
if (!strtotime($testDate)) {
|
||||
$brokenTZ[] = $timezone;
|
||||
}
|
||||
}
|
||||
$timezoneList = '"' . implode('","', $brokenTZ) . '"';
|
||||
|
||||
return array(
|
||||
'UPDATE ' . Common::prefixTable('site') . '
|
||||
SET timezone = "UTC"
|
||||
WHERE timezone IN (' . $timezoneList . ')' => false,
|
||||
|
||||
'UPDATE `' . Common::prefixTable('option') . '`
|
||||
SET option_value = "UTC"
|
||||
WHERE option_name = "SitesManager_DefaultTimezone"
|
||||
AND option_value IN (' . $timezoneList . ')' => false,
|
||||
);
|
||||
}
|
||||
|
||||
static function update()
|
||||
{
|
||||
if (SettingsServer::isTimezoneSupportEnabled()) {
|
||||
Updater::updateDatabase(__FILE__, self::getSql());
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue