halt.

Given you "receiver controller" being
def index():
     session.testmycart = 1
     return dict(s=session)


Only two things can happen if no login is required:

a) either a user is coming back to the site (and the session isn't yet 
expired) and he gets

s = {'testmycart' : 1, 'previous_session_related_values' : 'bar'}

b) he is coming back with an expired session (the same thing happens if he 
was never on the site) and he gets

s = {'testmycart' : 1}


This will DEFINITELY happen in the same way if the user goes to 
http://host/a/c/f or http://host/a/c/f?utm_source=campaing&utm_campaign=baz


-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to