Hello
I have a flow that i start passing some query string in as parameter:

Code:
<a href="/flowx?id=123">click here</a>
when the flow start I capture those parameters and use them, my problem is that those parameter
disappear from the address that becames something like:

http://host/myapp/flowx?execution=e1s1
instead I would like this:
http://host/myapp/flowx?execution=e1s1&id=123

because i use some javascript to keep navigation through the site and I would like also to be able to restart a flow with correct parameters even navigating with back and forward button ( that works perfectly fine with flows that does not require some input data passed as request parameters )