diff --git a/ChangeLog b/ChangeLog index 8c265a0f6..2de0113ee 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,10 @@ phpMyAdmin - Changelog $Id$ $Source$ +2003-02-28 Michal Cihar + * tbl_indexes.php3: Show SQL query after modifying/creating index (closes + #694800) + 2003-02-28 Alexander M. Turek * Documentation.html: Fixed a typo. diff --git a/tbl_indexes.php3 b/tbl_indexes.php3 index d78753683..40f12a7f7 100644 --- a/tbl_indexes.php3 +++ b/tbl_indexes.php3 @@ -225,6 +225,8 @@ if (!defined('PMA_IDX_INCLUDED') $result = PMA_mysql_query($local_query) or PMA_mysqlDie('', $local_query, FALSE, $err_url); $message = $strTable . ' ' . htmlspecialchars($table) . ' ' . $strHasBeenAltered; + // To show the query: + $sql_query = $local_query; include('./tbl_properties.php3'); exit();