This commit is contained in:
Garvin Hicking
2003-04-29 10:13:00 +00:00
parent d2d5643b60
commit 424692a99b
2 changed files with 4 additions and 1 deletions

View File

@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
$Id$
$Source$
2003-04-29 Garvin Hicking <me@supergarv.de>
* tbl_move_copy.php3: Bug #729416
2003-04-28 Garvin Hicking <me@supergarv.de>
* index.php3, queryframe.php3, tbl_query_box.php3, querywindow.php3:
Even more issues when QueryFrameJS is set to true, but JS is not

View File

@@ -82,7 +82,7 @@ global $cfgRelation;
}
}
$new_table_query = 'INSERT INTO ' . PMA_backquote($cfgRelation[$pma_table])
$new_table_query = 'REPLACE INTO ' . PMA_backquote($cfgRelation[$pma_table])
. ' (' . implode(', ', $select_parts) . ', ' . implode(', ', $new_parts) . ')'
. ' VALUES '
. ' (\'' . implode('\', \'', $value_parts) . '\', \'' . implode('\', \'', $new_value_parts) . '\')';