Hi Robert,

review-metadata.jsp still uses getDC, just replace this with getMetadata 
see below.

Claudia



Index: 
/dspace-1_5_1-beta/dspace-jspui/dspace-jspui-webapp/src/main/webapp/submit/review-metadata.jsp
===================================================================
--- 
/dspace-1_5_1-beta/dspace-jspui/dspace-jspui-webapp/src/main/webapp/submit/review-metadata.jsp
 
(revision 3052)
+++ 
/dspace-1_5_1-beta/dspace-jspui/dspace-jspui-webapp/src/main/webapp/submit/review-metadata.jsp
 
(working copy)
@@ -134,11 +134,11 @@

            if (inputType.equals("qualdrop_value"))
            {
-             values = item.getDC(inputs[z].getElement(), Item.ANY, 
Item.ANY);
+             values = item.getMetadata(inputs[z].getSchema(), 
inputs[z].getElement(), Item.ANY, Item.ANY);
            }
            else
            {
-             values = item.getDC(inputs[z].getElement(), 
inputs[z].getQualifier(), Item.ANY);
+             values = item.getMetadata(inputs[z].getSchema(), 
inputs[z].getElement(), inputs[z].getQualifier(), Item.ANY);
            }
            if (values.length == 0)
            {


Robert Roggenbuck schrieb:
> Hi all,
> 
> I am running DSpace 1.5 JSPUI and just recognised that nearly all field 
> values are displayed as "None". It seems to me that only the fields from 
> the dc-namespace are taken. At the end all values are stored in DSpace - 
> but the wrong Verify/Review causes confusion. Does anyone experienced 
> the same? Is there a patch?
> 
> Greetings
> 
> Robert
> 

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
DSpace-tech mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/dspace-tech

Reply via email to