Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
ManifoldCF 2.7
-
None
Description
On line 152 of ./connectors/sharepoint/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/sharepoint/editSpecification_Metadata.html, the option start-tag is closed before the tag content. Starting with version 2.7, for some browsers, the metadata field select list displays blank lines.
The template has this:
<option value="$Encoder.attributeEscape($field.getValue())"/>$Encoder.bodyEscape($field.getPrettyName())</option>
but should probably be this:
<option value="$Encoder.attributeEscape($field.getValue())">$Encoder.bodyEscape($field.getPrettyName())</option>