diff --git a/ChangeLog b/ChangeLog index 4160467af..e99a325b8 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,11 @@ phpMyAdmin - Changelog $Id$ $Source$ +2002-07-15 Marc Delisle + * db_details_export.php3, db_details_links.php3, Documentation.html, + sql.php3, tbl_properties_export.php3, libraries/common.lib.php3, + libraries/select_lang.lib.php3: fixes from Loic + 2002-07-14 Marc Delisle * Documentation.html, db_details_exports.php3, tbl_properties_export.php3: add a link to a new faq entry explaining some dump options diff --git a/libraries/common.lib.php3 b/libraries/common.lib.php3 index 0de4577c7..b588c0dba 100644 --- a/libraries/common.lib.php3 +++ b/libraries/common.lib.php3 @@ -1207,8 +1207,7 @@ if (typeof(document.getElementById) != 'undefined' } // Want to have the query explained (Mike Beck 2002-05-22) // but only explain a SELECT (that has not been explained) - if (!eregi('^EXPLAIN[[:space:]]+', $GLOBALS['sql_query']) - && eregi('SELECT[[:space:]]+', $GLOBALS['sql_query'])) { + if (eregi('^SELECT[[:space:]]+', $GLOBALS['sql_query'])) { $explain_link = '[' . $GLOBALS['strExplain'] . '] ';