Skip to content

Commit 94ba135

Browse files
committed
Revert "write Identify/description as plain text; refs #7254"
This reverts commit 2f6d5d9.
1 parent 2f6d5d9 commit 94ba135

File tree

1 file changed

+3
-3
lines changed
  • goobi-viewer-connector/src/main/java/io/goobi/viewer/connector/oai/model/formats

1 file changed

+3
-3
lines changed

goobi-viewer-connector/src/main/java/io/goobi/viewer/connector/oai/model/formats/Format.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -185,9 +185,9 @@ public static Element getIdentifyXML(String filterQuerySuffix) throws SolrServer
185185

186186
if (StringUtils.isNoneEmpty(identifyTags.get("description"))) {
187187
Element eleDescription = new Element("description", OAI_NS);
188-
// Element eleDcDescription = new Element("description", DC_NS);
189-
eleDescription.setText(identifyTags.get("description"));
190-
// eleDescription.addContent(eleDcDescription);
188+
Element eleDcDescription = new Element("description", DC_NS);
189+
eleDcDescription.setText(identifyTags.get("description"));
190+
eleDescription.addContent(eleDcDescription);
191191
identify.addContent(eleDescription);
192192
}
193193

0 commit comments

Comments
 (0)