David Hotchkiss created CONNECTORS-1422:
-------------------------------------------
Summary: Option tags for Sharepoint Connector Metadata list are
closed prematurely.
Key: CONNECTORS-1422
URL: https://issues.apache.org/jira/browse/CONNECTORS-1422
Project: ManifoldCF
Issue Type: Bug
Components: SharePoint connector
Affects Versions: ManifoldCF 2.7
Reporter: David Hotchkiss
Priority: Minor
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>
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)