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:
authorThilina Buddika <thilinaabeyrathna@gmail.com>2012-06-16 22:41:10 +0400
committerThilina Buddika <thilinaabeyrathna@gmail.com>2012-06-16 22:41:10 +0400
commitc1e3fb7b16dfff2431168a811d83d0949dd39a29 (patch)
treec10f649e5193188ed653b943a5ceca2f54448b54 /tbl_change.php
parentefa742288380d4fef4f9945077ea084e11d96c9d (diff)
print html using addHTML function in tbl-change
Diffstat (limited to 'tbl_change.php')
-rw-r--r--tbl_change.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tbl_change.php b/tbl_change.php
index 3511ecb73d..c2ce4cf41b 100644
--- a/tbl_change.php
+++ b/tbl_change.php
@@ -381,6 +381,6 @@ if ($insert_mode) {
//Continue insertion form
$html_output .= PMA_getContinueInsertionForm($table, $db, $where_clause_array, $err_url);
}
-echo $html_output;
+$response->addHTML($html_output);
?>