NIHVIVO-3300 Remove the hard-coded reference to person.thumbnail.jpg

This commit is contained in:
j2blake 2012-03-22 20:18:34 +00:00
parent 9442468b75
commit bc6abca8a1

View file

@ -35,9 +35,6 @@ public abstract class UserAccountsPage extends AbstractPageHandler {
private static final String PERSON_CLASS_URI = "http://xmlns.com/foaf/0.1/Person"; private static final String PERSON_CLASS_URI = "http://xmlns.com/foaf/0.1/Person";
private static final String DEFAULT_IMAGE_URL = UrlBuilder
.getUrl("/images/placeholders/person.thumbnail.jpg");
/** /**
* After the account is created, or the password is reset, the user has this * After the account is created, or the password is reset, the user has this
* many days to repond to the email. * many days to repond to the email.
@ -109,7 +106,6 @@ public abstract class UserAccountsPage extends AbstractPageHandler {
UrlBuilder.getUrl("/accounts/firstTimeExternal")); UrlBuilder.getUrl("/accounts/firstTimeExternal"));
map.put("accountsAjax", UrlBuilder.getUrl("/accountsAjax")); map.put("accountsAjax", UrlBuilder.getUrl("/accountsAjax"));
map.put("proxyAjax", UrlBuilder.getUrl("/proxiesAjax")); map.put("proxyAjax", UrlBuilder.getUrl("/proxiesAjax"));
map.put("defaultImageUrl", DEFAULT_IMAGE_URL);
return map; return map;
} }