display SQL after edit row

This commit is contained in:
Marc Delisle
2003-01-28 14:02:40 +00:00
parent 3768693c75
commit 0a95f690b2
3 changed files with 19 additions and 2 deletions

View File

@@ -498,6 +498,18 @@ else {
}
$fields_cnt = count($fields_meta);
}
// Display previous update query (from tbl_replace)
if (isset($disp_query) && $cfg['ShowSQL'] == TRUE) {
$tmp_sql_query = $GLOBALS['sql_query'];
$tmp_sql_limit_to_append = $GLOBALS['sql_limit_to_append'];
$GLOBALS['sql_query'] = stripslashes($disp_query);
$GLOBALS['sql_limit_to_append'] = '';
PMA_showMessage($disp_message);
$GLOBALS['sql_query'] = $tmp_sql_query;
$GLOBALS['sql_limit_to_append'] = $tmp_sql_limit_to_append;
}
// Displays the results in a table
include('./libraries/display_tbl.lib.php3');
if (empty($disp_mode)) {