diff options
Diffstat (limited to 'src/interp/ht-util.boot')
-rw-r--r-- | src/interp/ht-util.boot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interp/ht-util.boot b/src/interp/ht-util.boot index 000dedfa..a0ea710e 100644 --- a/src/interp/ht-util.boot +++ b/src/interp/ht-util.boot @@ -138,7 +138,7 @@ replacePercentByDollar s == fn(s,0,MAXINDEX s) where fn(s,i,n) == i > n => '"" (m := charPosition(char "%",s,i)) > n => SUBSTRING(s,i,nil) - STRCONC(SUBSTRING(s,i,m - i),'"$",fn(s,m + 1,n)) + strconc(SUBSTRING(s,i,m - i),'"$",fn(s,m + 1,n)) htpSetLabelInputString(htPage, label, val) == -- value user typed as input string on page |