From c4cccf5ff0ebdfb0f0efd699fe56864df1ebf605 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 16 Apr 2003 12:52:48 +0000 Subject: [PATCH] Avoid displaying message twice in some cases (fixes bug #722378). --- ChangeLog | 2 ++ tbl_properties_common.php3 | 1 + 2 files changed, 3 insertions(+) diff --git a/ChangeLog b/ChangeLog index a65a97a9a..1a308c24a 100755 --- a/ChangeLog +++ b/ChangeLog @@ -7,6 +7,8 @@ $Source$ 2003-04-15 Michal Cihar * 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 * tbl_query_box.php3: Only display charset selection when a DB is diff --git a/tbl_properties_common.php3 b/tbl_properties_common.php3 index 790221042..b126ea198 100755 --- a/tbl_properties_common.php3 +++ b/tbl_properties_common.php3 @@ -38,6 +38,7 @@ if (!isset($message)) { include('./header.inc.php3'); } else { PMA_showMessage($message); + unset($message); }