Merged V3.2 to HEAD

15200: Fixed ETHREEOH-2480: Cannot upload files with .doc extension owing to exception from ContentMetadataExtracter
   15203: ETHREEOH-2246: Rework patch.authorityMigration to be more performant and report progress
   15254: ETHREEOH-2339: Fixed NullPointerException when editing LDAP-synced user who doesn't have an email address
   15267: Applied patch for ETHREEOH-1448: Exception when using the move up/down button when editting a web form
   15270: Mereg (sic) - Record only 15238
   15285: Merged V3.1 to V3.2
      15281: Merged V2.2 to V3.1
         15280: Absorb all metadata exceptions at all levels
      15282: Merged V2.2 to V3.1
         15273: Merged V3.2 to V2.2
            15200: Fixed ETHREEOH-2480: Cannot upload files with .doc extension owing to exception from ContentMetadataExtracter
-------------------------
Modified: svn:mergeinfo
   Merged /alfresco/BRANCHES/V2.2:r15273,15280
   Merged /alfresco/BRANCHES/V3.1:r15281-15282
   Merged /alfresco/BRANCHES/V3.2:r15200,15203,15254,15267,15270,15285



git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@16854 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Derek Hulley
2009-10-13 10:57:47 +00:00
parent 3bcdbc7e33
commit aa61dae7b0
2 changed files with 6 additions and 13 deletions

View File

@@ -142,7 +142,8 @@ public class EditUserDetailsDialog extends BaseDialogBean
public String getEmail()
{
return person.getProperties().get(ContentModel.PROP_EMAIL).toString();
Object value = person.getProperties().get(ContentModel.PROP_EMAIL);
return value == null ? null : value.toString();
}
public void setEmail(String email)
@@ -152,7 +153,8 @@ public class EditUserDetailsDialog extends BaseDialogBean
public String getFirstName()
{
return person.getProperties().get(ContentModel.PROP_FIRSTNAME).toString();
Object value = person.getProperties().get(ContentModel.PROP_FIRSTNAME);
return value == null ? null : value.toString();
}
public void setFirstName(String firstName)
@@ -162,7 +164,8 @@ public class EditUserDetailsDialog extends BaseDialogBean
public String getLastName()
{
return person.getProperties().get(ContentModel.PROP_LASTNAME).toString();
Object value = person.getProperties().get(ContentModel.PROP_LASTNAME);
return value == null ? null : value.toString();
}
public String getPersonDescription()