diff --git a/adminer/drivers/mysql.inc.php b/adminer/drivers/mysql.inc.php index c5d1b2c9..903fd167 100644 --- a/adminer/drivers/mysql.inc.php +++ b/adminer/drivers/mysql.inc.php @@ -250,7 +250,8 @@ if (!defined("DRIVER")) { $connection = new Min_DB; $credentials = $adminer->credentials(); if ($connection->connect($credentials[0], $credentials[1], $credentials[2])) { - $connection->query("SET SQL_QUOTE_SHOW_CREATE=1"); + $connection->query("SET sql_quote_show_create = 1"); + $connection->query("SET time_zone = " . $connection->quote(substr_replace(date("O"), ":", -2, 0))); // date("P") available since PHP 5.1.3 return $connection; } return $connection->error; diff --git a/changes.txt b/changes.txt index d9460542..b97f9286 100644 --- a/changes.txt +++ b/changes.txt @@ -7,6 +7,7 @@ AJAX forms in Google Chrome Parse UTF-16 and UTF-8 BOM in all text uploads Use DELIMITER in history Show databases even with skip_show_database in MySQL 5 (thanks to Radoslaw Kowalewski) +Set MySQL time zone by PHP setting Polish translation Adminer 3.2.0 (released 2011-02-24):