Fix displaying of entered query.

This commit is contained in:
Michal Čihař
2006-10-10 14:02:37 +00:00
parent 54738174ee
commit f741e2eb76
2 changed files with 7 additions and 0 deletions

View File

@@ -9,6 +9,7 @@ $Source$
* lang/german: Fix typo (translation #1467138).
* libraries/import.lib.php: Correctly fail if file is too short (bug
#1574340).
* libraries/db_table_exists.lib.php: Fix displaying of entered query.
2006-10-09 Michal Čihař <michal@cihar.com>
* lang/german: Fix typo (translation #1570611).

View File

@@ -62,6 +62,12 @@ if (empty($is_table) && !defined('PMA_SUBMIT_MULT')) {
if (isset($message)) {
$url_params['message'] = $message;
}
if (isset($sql_query)) {
$url_params['sql_query'] = $sql_query;
}
if (isset($display_query)) {
$url_params['display_query'] = $display_query;
}
PMA_sendHeaderLocation(
$cfg['PmaAbsoluteUri'] . 'db_details.php'
. PMA_generate_common_url($url_params, '&'));