Description
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.