Hello: I was following the internationalization video tutorial and stumbled upon an issue that has left me confused.
In the tutorial, a variable called _language=en is appended to the URL such as, 127.0.0.1/default/index?_language=test However, when I do this, request.get_vars is empty but request.env.query_string: _language=test Alternatively, when I omit the leading _ in the variable name, as in 127.0.0.1/default/index?language=test I get request.get_vars : language:test (as expected) and request.env.query_string: language=test So, unless I am doing something wrong (entirely possible), it seems like using a variable with a leading underscore is messing up the expected behaviour of request.get_vars. Has anyone seen something like this and can you shed a bit of light on what is going on?

