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:
authorAris Feryanto <aris_feryanto@yahoo.com>2011-07-29 07:43:00 +0400
committerAris Feryanto <aris_feryanto@yahoo.com>2011-07-29 07:43:00 +0400
commite1da98ae8551e2ffcc925481231ee95d2f9954c5 (patch)
treeae097883c7de30ef329f1910742a692c18f3ed0b /tbl_replace.php
parentd5054f6775f2389af32171cef835ba1fc7a4fa55 (diff)
Grid edit: fix bug - notice line above SQL query now shown correctly
Diffstat (limited to 'tbl_replace.php')
-rw-r--r--tbl_replace.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tbl_replace.php b/tbl_replace.php
index 75d041d81d..22bf81349c 100644
--- a/tbl_replace.php
+++ b/tbl_replace.php
@@ -528,7 +528,7 @@ if ($GLOBALS['is_ajax_request'] == true) {
/**Get the total row count of the table*/
$extra_data['row_count'] = PMA_Table::countRecords($_REQUEST['db'],$_REQUEST['table']);
- $extra_data['sql_query'] = PMA_showMessage(NULL, $GLOBALS['display_query']);
+ $extra_data['sql_query'] = PMA_showMessage($message, $GLOBALS['display_query']);
PMA_ajaxResponse($message, $message->isSuccess(), $extra_data);
}