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:
authorMadhura Jayaratne <madhura.cj@gmail.com>2014-11-20 19:14:53 +0300
committerMadhura Jayaratne <madhura.cj@gmail.com>2014-11-20 19:14:53 +0300
commit93366c8c2403a1dc07d9b198a423d250ffb7ecd2 (patch)
treec4fd17d965f23b99c5c48ed37d0592f5476c2c05 /tbl_zoom_select.php
parentc7d9a99683810144822c66f463b470eff64df956 (diff)
parent3443cc1ca4bfe4d4c9383e84ba5188adbb4a2ab9 (diff)
Merge branch 'QA_4_2' into QA_4_3
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
Diffstat (limited to 'tbl_zoom_select.php')
-rw-r--r--tbl_zoom_select.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tbl_zoom_select.php b/tbl_zoom_select.php
index 6c6532796f..881ebeff41 100644
--- a/tbl_zoom_select.php
+++ b/tbl_zoom_select.php
@@ -81,7 +81,7 @@ if (isset($_REQUEST['change_tbl_info']) && $_REQUEST['change_tbl_info'] == true)
}
$key = array_search($field, $table_search->getColumnNames());
$properties = $table_search->getColumnProperties($_REQUEST['it'], $key);
- $response->addJSON('field_type', $properties['type']);
+ $response->addJSON('field_type', htmlspecialchars($properties['type']));
$response->addJSON('field_collation', $properties['collation']);
$response->addJSON('field_operators', $properties['func']);
$response->addJSON('field_value', $properties['value']);