><a href="foo.epl?page=1&[+ [ %fdat ] +]">page 1</a>
>
>When I submit index.html with test = #,
>snippet in foo.epl becomes:
><a href="foo.epl?page=1&test=#">page 1</a>
>

Oops, the # must be escaped, because it has a special meaning in a url. Goto
epchar.c, line 229 and change

        { '#' ,   ""         },    /*  &#35;  Number sign  */

to

        { '#' ,   "%23"         },    /*  &#35;  Number sign  */

then it should correctly escaped and your page should work

Gerald



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to