diff --git a/dspace-jspui/dspace-jspui-webapp/src/main/webapp/submit/review-metadata.jsp b/dspace-jspui/dspace-jspui-webapp/src/main/webapp/submit/review-metadata.jsp index 06847379aa..f24553b64f 100644 --- a/dspace-jspui/dspace-jspui-webapp/src/main/webapp/submit/review-metadata.jsp +++ b/dspace-jspui/dspace-jspui-webapp/src/main/webapp/submit/review-metadata.jsp @@ -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)); diff --git a/dspace/CHANGES b/dspace/CHANGES index 597e0b828a..d7b699d1e3 100644 --- a/dspace/CHANGES +++ b/dspace/CHANGES @@ -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)