Merge branch 'ccm-cms-mvc' into event-mvc-editsteps

pull/15/head
Jens Pelzetter 2022-02-07 21:11:28 +01:00
commit 170171f6cd
1 changed files with 3 additions and 3 deletions

View File

@ -90,7 +90,7 @@ class ProfileSiteItemController {
)
)
);
profileSiteItem.getPosition().addValue(locale, position);
profileSiteItem.getPosition().putValue(locale, position);
}
public void setInterests(
@ -108,7 +108,7 @@ class ProfileSiteItemController {
)
)
);
profileSiteItem.getInterests().addValue(locale, interests);
profileSiteItem.getInterests().putValue(locale, interests);
}
public void setMisc(
@ -124,7 +124,7 @@ class ProfileSiteItemController {
)
)
);
profileSiteItem.getMisc().addValue(locale, misc);
profileSiteItem.getMisc().putValue(locale, misc);
}
}