The branch, master has been updated via d6303215118e73062ac3749f893ab9630a948816 (commit) from f1fbb2bb8c2ef908170fb919a9d9fbeb179b6205 (commit)
- Log ----------------------------------------------------------------- commit d6303215118e73062ac3749f893ab9630a948816 Author: Marc Delisle marc@infomarc.info Date: Wed Sep 7 12:39:23 2011 -0400
Missing HTML escape
-----------------------------------------------------------------------
Summary of changes: tbl_zoom_select.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/tbl_zoom_select.php b/tbl_zoom_select.php index 01b4cc0..11754b8 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']; }
hooks/post-receive