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:
authorMarc Delisle <marc@infomarc.info>2011-09-07 20:39:23 +0400
committerMarc Delisle <marc@infomarc.info>2011-09-07 20:39:23 +0400
commitd6303215118e73062ac3749f893ab9630a948816 (patch)
tree528f37c2a4ee73119b6fa8fd6f8597e61ad12726 /tbl_zoom_select.php
parentf1fbb2bb8c2ef908170fb919a9d9fbeb179b6205 (diff)
Missing HTML escape
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 01b4cc0605..11754b8d68 100644
--- a/tbl_zoom_select.php
+++ b/tbl_zoom_select.php
@@ -278,7 +278,7 @@ for ($j = 0; $j < $fields_cnt; $j++) {
<?php
echo '<input type="text" name="maxPlotLimit" id="maxRowPlotLimit" value="';
if (! empty($maxPlotLimit)) {
- echo $maxPlotLimit;
+ echo htmlspecialchars($maxPlotLimit);
} else {
echo $GLOBALS['cfg']['maxRowPlotLimit'];
}