Bug: When creating a page using the save script, form field values are not set by passed parameters
When creating a new page using an html form which submits to the save script, and the new page is to include a form, form variable passed to the new page as cgi parameters are not taken into account
Test case
Environment
--
KarenAiken - 30 Nov 2004
Follow up
I edited line 136 in Save.pm:
#TWiki::Form::fieldVars2Meta( $webName, $query, $meta ) unless $templatetopic; TWiki::Form::fieldVars2Meta( $webName, $query, $meta );
With that change, these now work for creating a new page with the save script (which covers off everything I need it to do

):
- Specify a
templatetopic that has a form attached with default values; don't specify formtemplate; pass values to new page which override default values - Specify a
templatetopic that has a form attached with default values; also specify formtemplate of attached form; pass values to new page which override default values - Specify a
templatetopic that has no form attached; also specify formtemplate; pass values to new page which set form values
But this is now broken

:
- Specify a
templatetopic that has a form attached with default values; don't specify formtemplate; don't pass values to new page: new page winds up with no values in the form
--
KarenAiken - 30 Nov 2004
Fix record