Hi,
My site uses many Zope page templates and uses cgi parameters a lot.
Migrating to Plone 3.0, my cgi parameters where lost with Plone LanguageTool when changing the language with the flags.
I found a workaround by customizing LanguageTool switchLanguage.py to something similar to the old Localizer code :
redirect=REQUEST['HTTP_REFERER']
REQUEST.RESPONSE.redirect(redirect)
This worked fine for me.
But in Plone 3.1, with LinguaPlone installed, I'm loosing my parameters again despite my switchLanguage customization.
Uninstalling LinguaPlone, with my customized switchLanguage.py, it works.
What could I do ? Is there something I can customize or parameterize in LinguaPlone that I would really like to keep ?
Thanks