diff --git a/libraries/TableSearch.class.php b/libraries/TableSearch.class.php
index d77cce1470..a0b3fa4924 100644
--- a/libraries/TableSearch.class.php
+++ b/libraries/TableSearch.class.php
@@ -316,6 +316,7 @@ EOT;
private function _getEnumSetInputBox($column_index, $criteriaValues,
$column_type, $column_id, $in_zoom_search_edit = false
) {
+ $column_type = htmlspecialchars($column_type);
$html_output = '';
$value = explode(
', ',
@@ -985,7 +986,9 @@ EOT;
$html_output .= '
'
. htmlspecialchars($this->_columnNames[$column_index]) . ' | ';
$properties = $this->getColumnProperties($column_index, $column_index);
- $html_output .= '' . $properties['type'] . ' | ';
+ $html_output .= ''
+ . htmlspecialchars($properties['type'])
+ . ' | ';
$html_output .= '' . $properties['collation'] . ' | ';
$html_output .= '' . $properties['func'] . ' | ';
// here, the data-type attribute is needed for a date/time picker
@@ -996,11 +999,13 @@ EOT;
$html_output .= '| ';
$html_output .= '_columnNames[$column_index])
. '" />';
$html_output .= '';
+ . ' value="'
+ . htmlspecialchars($this->_columnTypes[$column_index]) . '" />';
$html_output .= '';
diff --git a/libraries/Util.class.php b/libraries/Util.class.php
index 3154c3edc8..44c1a04820 100644
--- a/libraries/Util.class.php
+++ b/libraries/Util.class.php
@@ -3029,9 +3029,12 @@ class PMA_Util
// for the case ENUM('–','“')
$displayed_type = htmlspecialchars($printtype);
if (strlen($printtype) > $GLOBALS['cfg']['LimitChars']) {
- $displayed_type = '';
- $displayed_type .= $GLOBALS['PMA_String']->substr(
- $printtype, 0, $GLOBALS['cfg']['LimitChars']
+ $displayed_type = '';
+ $displayed_type .= htmlspecialchars(
+ $GLOBALS['PMA_String']->substr(
+ $printtype, 0, $GLOBALS['cfg']['LimitChars']
+ )
);
$displayed_type .= '';
}
|