Properly escape zoom search column type
Signed-off-by: Michal Čihař <michal@cihar.com>
This commit is contained in:
parent
351019c074
commit
9b6f64b8b9
@ -1031,7 +1031,7 @@ EOT;
|
||||
$html_output .= '<input type="hidden" name="criteriaColumnTypes[' . $i . ']"'
|
||||
. ' id="types_' . $i . '" ';
|
||||
if (isset($_POST['criteriaColumnTypes'][$i])) {
|
||||
$html_output .= 'value="' . $_POST['criteriaColumnTypes'][$i] . '" ';
|
||||
$html_output .= 'value="' . htmlspecialchars($_POST['criteriaColumnTypes'][$i]) . '" ';
|
||||
}
|
||||
$html_output .= '/>';
|
||||
$html_output .= '<input type="hidden" name="criteriaColumnCollations['
|
||||
|
||||
Loading…
Reference in New Issue
Block a user