Martin Grigorov created WICKET-4775:
---------------------------------------

             Summary: PageParameters#mergeWith may loose values of the 'other' 
PP
                 Key: WICKET-4775
                 URL: https://issues.apache.org/jira/browse/WICKET-4775
             Project: Wicket
          Issue Type: Bug
          Components: wicket
    Affects Versions: 6.0.0, 1.5.8
            Reporter: Martin Grigorov
            Assignee: Emond Papegaaij


The code at 
org.apache.wicket.request.mapper.parameter.PageParameters#mergeWith() looks 
like:

for (NamedPair curNamed : other.getAllNamed())
                set(curNamed.getKey(), curNamed.getValue());

may loose some values if 'other' has a named parameter with several values.With 
the current code only the last name/value pair is preserved.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to