mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-12 12:33:18 +00:00
Undo trim on getMetadata in Community that slipped into last commit. Return values need to represent what is truly in database.
git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@3026 9c30dcfa-912a-0410-8fc2-9e0234be79fd
This commit is contained in:
@@ -349,7 +349,7 @@ public class Community extends DSpaceObject
|
||||
public String getMetadata(String field)
|
||||
{
|
||||
String metadata = communityRow.getStringColumn(field);
|
||||
return (metadata == null) ? "" : metadata.trim();
|
||||
return (metadata == null) ? "" : metadata;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user