fix unlikely self-XSS from your own package def names
authorIvan Kohler <ivan@freeside.biz>
Sat, 7 Feb 2015 02:22:46 +0000 (18:22 -0800)
committerIvan Kohler <ivan@freeside.biz>
Sat, 7 Feb 2015 02:22:46 +0000 (18:22 -0800)
httemplate/elements/selectlayers.html

index cb1d2d6..785ee36 100644 (file)
@@ -121,7 +121,7 @@ Example:
 
         <OPTION VALUE="<% $option %>"
                 <% $option eq $selected ? ' SELECTED' : '' %>
-        ><% $options->{$option} %></OPTION>
+        ><% $options->{$option} |h %></OPTION>
 
 %     }