diff --git a/ChangeLog b/ChangeLog index 96aa9d864..dcedf2493 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,13 @@ phpMyAdmin - Changelog $Id$ $Source$ +2002-06-26 Olivier L. Müller + * tbl_change.php3: display the submit button every 15 lines: + may be useful for tables with 200 fields... + * db_details_structure.php3: fixed a wrong link: [Properties] + was opening the tbl_properties.php3 instead of + tbl_properties_structure.php3 + 2002-06-25 Alexander M. Turek * lang/german-utf8.inc.php3: Synchronization. * ChangeLog: Added a note about the older ChangeLogs at EoF. diff --git a/db_details_structure.php3 b/db_details_structure.php3 index 0da7f03dc..00c278a1e 100644 --- a/db_details_structure.php3 +++ b/db_details_structure.php3 @@ -111,7 +111,7 @@ else if (PMA_MYSQL_INT_VERSION >= 32303) { - + diff --git a/tbl_change.php3 b/tbl_change.php3 index 7a33c0acf..02212c0af 100755 --- a/tbl_change.php3 +++ b/tbl_change.php3 @@ -111,6 +111,7 @@ else } + /** * Displays the form */ @@ -165,6 +166,23 @@ $timestamp_seen = 0; $fields_cnt = mysql_num_rows($table_def); for ($i = 0; $i < $fields_cnt; $i++) { + + + // display the submit button after every 15 lines --swix + // (wanted to use an and instead, + // but it didn't worked because of the ) + + if ((($i % 15) == 0) && ($i != 0)) { + ?> + + +   + + +