This commit is contained in:
Alexander M. Turek
2005-03-10 21:40:44 +00:00
parent c84507f8d9
commit a4a372597d
2 changed files with 4 additions and 1 deletions

View File

@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
$Id$ $Id$
$Source$ $Source$
2005-03-06 Alexander M. Turek <me@derrabus.de>
* libraries/relation.lib.php: Bug #1159415.
2005-03-10 Marc Delisle <lem9@users.sourceforge.net> 2005-03-10 Marc Delisle <lem9@users.sourceforge.net>
* libraries/database_interface.lib.php, libraries/relation.lib.php: * libraries/database_interface.lib.php, libraries/relation.lib.php:
problem with getting comments when creating a new table under MySQL 4.1.x problem with getting comments when creating a new table under MySQL 4.1.x

View File

@@ -469,7 +469,7 @@ function PMA_getComments($db, $table = '') {
} }
if (PMA_DBI_num_rows($com_rs) > 0) { if (isset($com_rs) && PMA_DBI_num_rows($com_rs) > 0) {
$i = 0; $i = 0;
while ($row = PMA_DBI_fetch_assoc($com_rs)) { while ($row = PMA_DBI_fetch_assoc($com_rs)) {
$i++; $i++;