bug 884606

This commit is contained in:
Marc Delisle
2004-01-27 18:18:28 +00:00
parent 2dbc6f9454
commit 2f4da69965
2 changed files with 5 additions and 2 deletions

View File

@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
$Id$ $Id$
$Source$ $Source$
2004-01-27 Marc Delisle <lem9@users.sourceforge.net>
* main.php: bug 884606, MySQL version check before server choice
2004-01-26 Robin Johnson <robbat2@users.sourceforge.net> 2004-01-26 Robin Johnson <robbat2@users.sourceforge.net>
* libraries/dbi/mysql.dbi.lib.php: Correct the default parameter for * libraries/dbi/mysql.dbi.lib.php: Correct the default parameter for
PMA_DBI_insert_id($link = '') and convert file back to UNIX linefeeds. PMA_DBI_insert_id($link = '') and convert file back to UNIX linefeeds.

View File

@@ -645,8 +645,8 @@ if (PMA_PHP_INT_VERSION < 40100) {
/** /**
* Warning for old MySQL version * Warning for old MySQL version
*/ */
// not yet defined before the server choice
if (PMA_MYSQL_INT_VERSION < 32332) { if (defined('PMA_MYSQL_INT_VERSION') && PMA_MYSQL_INT_VERSION < 32332) {
echo '<p class="warning">' . sprintf($strUpgrade, 'MySQL', '3.23.32') . '</p>' . "\n"; echo '<p class="warning">' . sprintf($strUpgrade, 'MySQL', '3.23.32') . '</p>' . "\n";
} }