Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThilanka Kaushalya <lgtkaushalya@gmail.com>2011-06-25 15:27:54 +0400
committerMarc Delisle <marc@infomarc.info>2011-06-27 15:23:25 +0400
commit146a8da5e93c3a187dd7ef2f5715be777b0e2d9e (patch)
treef3b0eebad3a2fec1986e7abb4713aae0040f98b4 /tbl_alter.php
parent64c50006c390630090eac92ec4caebda988f41d2 (diff)
Ajaxified the multi column change in table structure
Diffstat (limited to 'tbl_alter.php')
-rw-r--r--tbl_alter.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/tbl_alter.php b/tbl_alter.php
index 1c2d7fbd80..743e92503b 100644
--- a/tbl_alter.php
+++ b/tbl_alter.php
@@ -131,7 +131,8 @@ if (isset($_REQUEST['do_save_data'])) {
}
if( $GLOBALS['is_ajax_request'] == true) {
- PMA_ajaxResponse($message, $message->isSuccess());
+ $extra_data['sql_query'] = PMA_showMessage(NULL, $sql_query);
+ PMA_ajaxResponse($message, $message->isSuccess(),$extra_data);
}
$active_page = 'tbl_structure.php';