Background Running: current stable of mp2 and libapreq-devel
Problem:
I'm allowing GET style urls to forms for pre-population
If the POST action is dirty though, i get cross contamination of
vars IF there was a NULL action in the form
ie:
url:
[EMAIL PROTECTED]&subject=hello
becomes form:
{form action="" method=POST"}
email: [ [EMAIL PROTECTED]
subject: [ hello ]
body: []
{/form}
if i submit that, then it submits the POST data (as it should) to
the url [EMAIL PROTECTED]&subject=hello
Why not just remove the GET from submission, using
{ form action="message.cgi" method="POST" }
regards
Jeff