Fixed member path use.
This commit is contained in:
parent
080f72a374
commit
cc545c217e
1 changed files with 4 additions and 4 deletions
|
@ -516,7 +516,7 @@ public class Organization extends PathPropertyList
|
||||||
{
|
{
|
||||||
LocalDate result;
|
LocalDate result;
|
||||||
|
|
||||||
result = getDate("organization.memberof." + this.federation.getName() + ".enddate");
|
result = getDate("organization.memberof." + this.federation.getTechnicalName() + ".enddate");
|
||||||
|
|
||||||
//
|
//
|
||||||
return result;
|
return result;
|
||||||
|
@ -548,7 +548,7 @@ public class Organization extends PathPropertyList
|
||||||
{
|
{
|
||||||
String result;
|
String result;
|
||||||
|
|
||||||
result = get("organization.memberof." + this.federation.getName() + ".enddate");
|
result = get("organization.memberof." + this.federation.getTechnicalName() + ".enddate");
|
||||||
|
|
||||||
//
|
//
|
||||||
return result;
|
return result;
|
||||||
|
@ -586,7 +586,7 @@ public class Organization extends PathPropertyList
|
||||||
{
|
{
|
||||||
LocalDate result;
|
LocalDate result;
|
||||||
|
|
||||||
result = getDate("organization.memberof." + this.federation.getName() + ".startdate");
|
result = getDate("organization.memberof." + this.federation.getTechnicalName() + ".startdate");
|
||||||
|
|
||||||
//
|
//
|
||||||
return result;
|
return result;
|
||||||
|
@ -618,7 +618,7 @@ public class Organization extends PathPropertyList
|
||||||
{
|
{
|
||||||
String result;
|
String result;
|
||||||
|
|
||||||
result = get("organization.memberof." + this.federation.getName() + ".startdate");
|
result = get("organization.memberof." + this.federation.getTechnicalName() + ".startdate");
|
||||||
|
|
||||||
//
|
//
|
||||||
return result;
|
return result;
|
||||||
|
|
Loading…
Reference in a new issue