diff --git a/ChangeLog b/ChangeLog index a51b81009..c8e935a46 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,10 @@ phpMyAdmin - Changelog $Id$ $Source$ +2003-08-25 Alexander M. Turek + * tbl_rename.php3: After renaming a table, move back to + tbl_properties_operations.php3 instead of tbl_properties.php3. + 2003-08-22 Marc Delisle * lang/galician: Updated, thanks to Xosé Calvo. * lang/spanish: Updated, thanks to Daniel Hinostroza (dhinostroza). diff --git a/tbl_rename.php3 b/tbl_rename.php3 index 3962bcb44..420fd7e77 100755 --- a/tbl_rename.php3 +++ b/tbl_rename.php3 @@ -79,7 +79,7 @@ if (isset($new_name) && trim($new_name) != '') { unset($table_query); unset($tb_rs); } - + if ($cfgRelation['pdfwork']) { $table_query = 'UPDATE ' . PMA_backquote($cfgRelation['table_coords']) . ' SET table_name = \'' . PMA_sqlAddslashes($table) . '\'' @@ -105,5 +105,5 @@ else { /** * Back to the calling script */ -require('./tbl_properties.php3'); +require('./tbl_properties_operations.php3'); ?>