mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
More d:locale property support
- Specific tests - Locale is persisted as a string of a more consistent nature git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@4608 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -134,7 +134,12 @@ public class PropertyValue implements Cloneable, Serializable
|
||||
@Override
|
||||
Serializable convert(Serializable value)
|
||||
{
|
||||
return DefaultTypeConverter.INSTANCE.convert(String.class, value);
|
||||
String str = DefaultTypeConverter.INSTANCE.convert(String.class, value);
|
||||
if (value instanceof Locale && str.length() < 6)
|
||||
{
|
||||
str += "_";
|
||||
}
|
||||
return str;
|
||||
}
|
||||
},
|
||||
DATE
|
||||
|
Reference in New Issue
Block a user