[DS-115] metadata not showed in verify step

git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@3647 9c30dcfa-912a-0410-8fc2-9e0234be79fd
This commit is contained in:
Andrea Bollini
2009-03-29 17:51:22 +00:00
parent 1d58746e8b
commit 99e6acab6b
2 changed files with 7 additions and 1 deletions

View File

@@ -159,7 +159,11 @@
String storedVal = values[i].value;
String displayVal = inputs[z].getDisplayString(pairsName,
storedVal);
if (displayVal == null || displayVal.equals(""))
if (displayVal != null && !displayVal.equals(""))
{
row.append(Utils.addEntities(displayVal));
}
else if (storedVal != null && !storedVal.equals(""))
{
// use the stored value as label rather than null
row.append(Utils.addEntities(storedVal));

View File

@@ -117,6 +117,8 @@
- [DS-126] Request to [dspace-base-url]/bitstream throw NPE
- [DS-67] Impossible retry/resume after upload a file with internal format
- [DS-66] bitstream format registry, setting bitstream internal - ID: 1896055
- [DS-115] metadata not showed in verify step
(Paulo Jobim)
- SF Patch [2655052] Authors re-ordered when item edited (xmlui)