Added line to encode entities in exported metadata (i.e., & becomes &

git-svn-id: http://scm.dspace.org/svn/repo/trunk@1007 9c30dcfa-912a-0410-8fc2-9e0234be79fd
This commit is contained in:
Greg McClellan
2004-06-24 17:21:31 +00:00
parent e040d45a6d
commit 72c078b937

View File

@@ -330,7 +330,7 @@ public class ItemExport
String output = " <dcvalue element=\"" + dcv.element + "\" " +
"qualifier=\"" + qualifier + "\">" +
dcv.value +
Utils.addEntities(dcv.value) +
"</dcvalue>";
out.println( output );