Avoid displaying message twice in some cases (fixes bug #722378).

This commit is contained in:
Michal Čihař
2003-04-16 12:52:48 +00:00
parent 48fb8346c8
commit c4cccf5ff0
2 changed files with 3 additions and 0 deletions

View File

@@ -7,6 +7,8 @@ $Source$
2003-04-15 Michal Cihar <nijel@users.sourceforge.net> 2003-04-15 Michal Cihar <nijel@users.sourceforge.net>
* libraries/sqlparser.data.php3: Added AUTO_INCREMET to reserved words. * libraries/sqlparser.data.php3: Added AUTO_INCREMET to reserved words.
* tbl_properties_common.php3: Avoid displaying message twice in some cases
(fixes bug #722378).
2003-04-15 Michal Cihar <nijel@users.sourceforge.net> 2003-04-15 Michal Cihar <nijel@users.sourceforge.net>
* tbl_query_box.php3: Only display charset selection when a DB is * tbl_query_box.php3: Only display charset selection when a DB is

View File

@@ -38,6 +38,7 @@ if (!isset($message)) {
include('./header.inc.php3'); include('./header.inc.php3');
} else { } else {
PMA_showMessage($message); PMA_showMessage($message);
unset($message);
} }