From 7e910a789ee798fb1c764843ac159b05e67596a5 Mon Sep 17 00:00:00 2001 From: Garvin Hicking Date: Wed, 2 Apr 2003 14:39:38 +0000 Subject: [PATCH] Integrity keeping --- ChangeLog | 2 ++ tbl_move_copy.php3 | 5 ++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index efd11fbe5..fa79b3fb2 100755 --- a/ChangeLog +++ b/ChangeLog @@ -6,6 +6,8 @@ $Id$ $Source$ 2003-04-02 Garvin Hicking + * tbl_move_copy.php3: At least one of the PDF integrity checks + on moving/copying a table can safely be enabled. * tbl_move_copy.php3, tbl_properties_operations.php3: Made 'move to newly created table' depend on a selected checkbox. State of that checkbox is saved in a cookie. diff --git a/tbl_move_copy.php3 b/tbl_move_copy.php3 index 661bc76db..35125c76e 100644 --- a/tbl_move_copy.php3 +++ b/tbl_move_copy.php3 @@ -275,7 +275,6 @@ if (isset($new_name) && trim($new_name) != '') { // seem to be stored on a per-database basis. Would the author of pdf support // please have a look at it? - /* if ($cfgRelation['pdfwork']) { $table_query = 'UPDATE ' . PMA_backquote($cfgRelation['table_coords']) . ' SET table_name = \'' . PMA_sqlAddslashes($new_name) . '\',' @@ -285,7 +284,7 @@ if (isset($new_name) && trim($new_name) != '') { $tb_rs = PMA_query_as_cu($table_query); unset($table_query); unset($tb_rs); - + /* $pdf_query = 'SELECT pdf_page_number ' . ' FROM ' . PMA_backquote($cfgRelation['table_coords']) . ' WHERE db_name = \'' . PMA_sqlAddslashes($target_db) . '\'' @@ -301,8 +300,8 @@ if (isset($new_name) && trim($new_name) != '') { unset($table_query); unset($tb_rs); } + */ } - */ $sql_query .= "\n\n" . $sql_drop_table . ';'; } else {