diff --git a/ChangeLog b/ChangeLog index c6cb0c78e..77eea52f6 100755 --- a/ChangeLog +++ b/ChangeLog @@ -7,6 +7,8 @@ $Source$ 2004-04-19 Alexander M. Turek * lang/german-*.inc.php: Clarification. + * config.inc.php, Documentation.html, libraries/config_import.lib.php: + Updated path to MySQL's searchable online documentation. 2004-04-19 Marcel Tschopp * libraries/export/sql.php, libraries/export/latex.php: Fixed a few diff --git a/Documentation.html b/Documentation.html index 66c6f0518..f2287d129 100755 --- a/Documentation.html +++ b/Documentation.html @@ -2869,7 +2869,7 @@ To create a new, empty mimetype please see libraries/transformations/template_ge [3.9] I get error messages when using "--sql_mode=ANSI" for the MySQL server

- When MySQL is running in ANSI-compatibility mode, there are some major differences in how SQL is structured (see http://www.mysql.com/doc/en/ANSI_mode.html). Most important of all, the quote-character (") is interpreted as an identifier quote character and not as a string quote character, which makes many internal phpMyAdmin operations into invalid SQL statements. There is no workaround to this behaviour. News to this item will be posted in Bug report #816858 + When MySQL is running in ANSI-compatibility mode, there are some major differences in how SQL is structured (see http://dev.mysql.com/doc/mysql/en/ANSI_mode.html). Most important of all, the quote-character (") is interpreted as an identifier quote character and not as a string quote character, which makes many internal phpMyAdmin operations into invalid SQL statements. There is no workaround to this behaviour. News to this item will be posted in Bug report #816858

diff --git a/config.inc.php b/config.inc.php index 811eee949..25bdf6c2f 100644 --- a/config.inc.php +++ b/config.inc.php @@ -351,10 +351,10 @@ $cfg['Export']['sql_header_comment'] = ''; // \n is replaced by new line /** * Link to the official MySQL documentation. * Be sure to include no trailing slash on the path. - * See http://www.mysql.com/documentation/index.html for more information + * See http://dev.mysql.com/doc/ for more information * about MySQL manuals and their types. */ -$cfg['MySQLManualBase'] = 'http://www.mysql.com/doc/en'; +$cfg['MySQLManualBase'] = 'http://dev.mysql.com/doc/mysql/en'; /** * Type of MySQL documentation: diff --git a/libraries/config_import.lib.php b/libraries/config_import.lib.php index 35cf09800..0f110a72e 100644 --- a/libraries/config_import.lib.php +++ b/libraries/config_import.lib.php @@ -518,7 +518,7 @@ if (!isset($cfg['MySQLManualBase'])) { $cfg['MySQLManualType'] = 'old'; unset($cfg['ManualBaseShort']); } else { - $cfg['MySQLManualBase'] = 'http://www.mysql.com/doc/en'; + $cfg['MySQLManualBase'] = 'http://dev.mysql.com/doc/mysql/en'; $cfg['MySQLManualType'] = 'searchable'; } }