# HG changeset patch # User paulb # Date 1133895463 0 # Node ID 5efedee4f0fe1e8f4295201e3603230f61e4c0fc # Parent 2a6ad13b4ef60308e78e802ac31974eb9bc5279b [project @ 2005-12-06 18:57:43 by paulb] Fixed the initialisation of form objects for non-GET/POST requests. diff -r 2a6ad13b4ef6 -r 5efedee4f0fe XSLForms/Resources/WebResources.py --- a/XSLForms/Resources/WebResources.py Tue Dec 06 18:57:09 2005 +0000 +++ b/XSLForms/Resources/WebResources.py Tue Dec 06 18:57:43 2005 +0000 @@ -284,10 +284,9 @@ else: - # Initialise empty containers. + # Initialise empty container. - parameters = {} - documents = {} + form = XSLForms.Fields.Form(encoding=self.encoding, values_are_lists=1) # Call an overridden method with the processed request information.