Fixed bug #438743 (Odd behaviour after drop database)

This commit is contained in:
Loïc Chapeaux
2001-07-05 21:04:36 +00:00
parent 71771cadde
commit 30492ff2d6
2 changed files with 3 additions and 1 deletions

View File

@@ -8,6 +8,8 @@ $Source$
2001-07-05 Lo<4C>c Chapeaux <lolo@phpheaven.net> 2001-07-05 Lo<4C>c Chapeaux <lolo@phpheaven.net>
* lib.inc.php3: Patch #438708 (Changes to display_table) thanks to * lib.inc.php3: Patch #438708 (Changes to display_table) thanks to
Thomas Kl<4B>ger. Thomas Kl<4B>ger.
* header.inc.php3, line 53: fixed bug #438743 (Odd behaviour after drop
database).
2001-07-04 Marc Delisle <lem9@users.sourceforge.net> 2001-07-04 Marc Delisle <lem9@users.sourceforge.net>
* bug #438319 (IE 5.5 and "Add a new user"): user_details.php3, * bug #438319 (IE 5.5 and "Add a new user"): user_details.php3,

View File

@@ -50,7 +50,7 @@ A:hover.nav {font-family: <?php echo $font_family; ?>; color: red;}
if(isset($db)) if(isset($db))
{ {
echo "<h1> $strDatabase $db"; echo "<h1> $strDatabase $db";
if(isset($table)) if (isset($table) && !isset($btnDrop))
{ {
echo " - $strTable $table"; echo " - $strTable $table";
} }