(fix) now also give modify permission

pull/218/merge
Ludovic Marcotte 2017-09-21 13:59:55 -04:00
parent aa7febe15b
commit 6730db74e6
2 changed files with 3 additions and 0 deletions

1
NEWS
View File

@ -11,6 +11,7 @@ New features
Enhancements
- [web] follow requested URL after user authentication
- [web] added Simplified Chinese (zh_CN) translation - thanks to Thomas Kuiper
- [web] now also give modify permission when selecting all calendar rights
Bug fixes
- [core] yearly repeating events are not shown in web calendar (#4237)

View File

@ -140,6 +140,8 @@
_.forEach(user.rights, function(value, right) {
if (angular.isNumber(user.rights[right]))
user.rights[right] = 1;
else
user.rights[right] = "Modifier";
});
};