mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-07 01:54:22 +00:00
[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:
@@ -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));
|
||||
|
@@ -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)
|
||||
|
Reference in New Issue
Block a user