cgi.http_referer
In the beginning of each template, I want to check that the referring template is the right one.
This works ok except in a couple of cases where cgi.referer not only returns the path and template name but it also returns a querystring like path/templatename?a='#a#'& etc.
In the form in the referring template, method="post", and I don't explicitly pass parameters in URLs.
I can still check for the right template etc but I don't know why cgi.referrer is acting differently in those places/
What can cause this ?
