Hi, A query about [$hidden$] tag. It appears that subsequent executions of [$hidden$] tag cause me to lose the first form element that was passed.
Is this the expected behaviour? Here�s an example src: <form action="bug1.epl"> [$ hidden $] <input type="submit" name="foo" value="Submit 1"> </form> <p> <form action="bug1.epl"> [$ hidden $] <input type="submit" name="foo" value="Submit 1"> </form> <form action="bug1.epl"> [$ hidden $] <input type="submit" name="foo" value="Submit 1"> </form> The output when called as bug1.epl?foo=1&bar=2: <form action="bug1.epl"> <input type="hidden" name="foo" value="1"><input type="hidden" name="bar" value="2"> <input type="submit" name="foo" value="Submit 1"> </form> <p> <form action="bug1.epl"> <input type="hidden" name="bar" value="2"> *** NOTE missing form value "foo" <input type="submit" name="foo" value="Submit 1"> </form> <form action="bug1.epl"> <input type="hidden" name="bar" value="2"> *** NOTE missing form value "foo" <input type="submit" name="foo" value="Submit 1"> </form> I worked out a temporary workaround for this issue in the interim: [- %nodat = () -] And then instead of using [$hidden$] I use [$hidden %fdat %nodat $] Wondering what should be done in this case, -j ______________________ Jordan Baker [EMAIL PROTECTED]� --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
