[DS-215] Single-argument Item.getMetadata does not work with mixed-case metadata terms. Re-applied in 1.7.1 / 1.8(trunk) as t got overwritten during a merge in the 1.7 development.

git-svn-id: http://scm.dspace.org/svn/repo/dspace/trunk@6105 9c30dcfa-912a-0410-8fc2-9e0234be79fd
This commit is contained in:
Stuart Lewis
2011-03-04 03:15:10 +00:00
parent 9198c80139
commit 7c465277d8
2 changed files with 4 additions and 1 deletions

View File

@@ -494,7 +494,7 @@ public class Item extends DSpaceObject
int i = 0;
while(dcf.hasMoreTokens())
{
tokens[i] = dcf.nextToken().toLowerCase().trim();
tokens[i] = dcf.nextToken().trim();
i++;
}
String schema = tokens[0];