s4

changeset 361:34076e5a4018

Should not htmlescape at calling cgi_type*
author HIROSE Yuuji <yuuji@gentei.org>
date Tue, 01 Nov 2016 18:18:23 +0859
parents 82aa436cf81d
children 955cd7b517d3
files s4-funcs.sh
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line diff
     1.1 --- a/s4-funcs.sh	Sun Oct 30 07:45:00 2016 +0859
     1.2 +++ b/s4-funcs.sh	Tue Nov 01 18:18:23 2016 +0859
     1.3 @@ -3191,7 +3191,7 @@
     1.4  	  val="<table>$nl$val$nl</table>"
     1.5  	else
     1.6  	  #form="<input name=\"$name\" value=\"$val\" type=\"$type\"$sp$args>$nl"
     1.7 -	  form=`cgi_$type $name "$val" "$args"`
     1.8 +	  form=`cgi_$type $name "$rawval" "$args"`
     1.9  	fi
    1.10  	;;
    1.11        [Rr][Aa][Dd][Ii][Oo])