- 🇳🇱Netherlands fabianderijk Alphen aan den Rijn
Both the MR as the patch won't apply to the new 2.3.x branch. Could you please check?
- 🇳🇱Netherlands arantxio Dordrecht
Created a new patch, it hasn't changed that much, but just enough for it to fail to apply apparently.
- Status changed to Needs review
almost 2 years ago 7:26am 30 January 2023 - Status changed to RTBC
almost 2 years ago 8:22am 30 January 2023 - 🇩🇪Germany Anybody Porta Westfalica
Thank you all! So @batigolix are you planning to merge this soon?
- Assigned to fabianderijk
-
fabianderijk →
committed 9b2e05f8 on 2.3.x authored by
Arantxio →
Issue #3226763 by Grevil, Anybody, Arantxio: Add separate permission for...
-
fabianderijk →
committed 9b2e05f8 on 2.3.x authored by
Arantxio →
- Status changed to Fixed
over 1 year ago 10:33am 24 February 2023 - 🇳🇱Netherlands fabianderijk Alphen aan den Rijn
This is fixed in the dev version, will create a new release version today.
Automatically closed - issue fixed for 2 weeks with no activity.
- Status changed to Fixed
over 1 year ago 3:07pm 19 April 2023 - 🇫🇷France everhee
Hello, Some olders permissions appears in drupal 10 upgrade status with an alert :
- access flood control settings page
- access flood unblockTo remove those alerts, I add to revoke them in flood_control.install by adding :
function flood_control_update_9202() { $roles = user_role_names(FALSE, 'access flood control settings page'); foreach ($roles as $roleKey => $roleName) { user_role_revoke_permissions($roleKey, [ 'access flood control settings page', ]); } } function flood_control_update_9203() { $roles = user_role_names(FALSE, 'access flood unblock'); foreach ($roles as $roleKey => $roleName) { user_role_revoke_permissions($roleKey, [ 'access flood unblock', ]); } }
- 🇧🇪Belgium dieterholvoet Brussels
@everhee I just encountered the same problem, opened a new issue: 📌 Revoke old permissions from roles Fixed .