Integrity keeping

This commit is contained in:
Garvin Hicking
2003-04-02 14:39:38 +00:00
parent a041b709fe
commit 7e910a789e
2 changed files with 4 additions and 3 deletions

View File

@@ -6,6 +6,8 @@ $Id$
$Source$
2003-04-02 Garvin Hicking <me@supergarv.de>
* 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.

View File

@@ -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 {