Merge branch 'develop' of github.com:humhub/humhub into develop

This commit is contained in:
Lucas Bartholemy 2023-10-28 17:59:14 +02:00
commit a392e93f91
2 changed files with 4 additions and 1 deletions

View File

@ -9,6 +9,7 @@ HumHub Changelog
- Enh #6623: Add a hint in the "Dropdown space order" settings to inform that a manual sort is always applied first
- Enh #6626: Content state flag "was published"
- Enh #6628: Add self test check: "Mobile App - Push Service"
- Fix #6634: Refresh cache after set a permission
1.15.0-beta.2 (October 5, 2023)
-------------------------------

View File

@ -183,7 +183,9 @@ class PermissionManager extends Component
$record->class = get_class($permission);
$record->group_id = $groupId;
$record->state = $state;
$record->save();
if ($record->save()) {
$this->clear();
}
}
/**