<%-- Presents a form that allows for name checking. We record all the old parameters in the request. Note that this can only be done before we start setting attribute values: otherwise the whole scheme here fails. --%> <% java.util.Set possibleDuplicates = (java.util.Set) request.getAttribute("possibleDuplicates"); String name = (String) request.getAttribute("name"); String[] parameterHiddenElements = pub.utils.StringUtils.parametersAsHiddenInputs(request); %>

Possible name duplication

The name <%= name %> possibly conflicts with the following: <%= possibleDuplicates %> If you wish to override and continue, press the submit button.
<% for(int i = 0; i < parameterHiddenElements.length; i++) { %> <%= parameterHiddenElements[i] %> <% } %>