πŸ‡«πŸ‡·France @everhee

Account created on 4 September 2019, almost 5 years ago
#

Recent comments

πŸ‡«πŸ‡·France everhee

Last patch is very good. Is there any way that footnotes created with ckeditor 4 might be compatible to ckeditor 5 when switching the text format ?

πŸ‡«πŸ‡·France everhee

Hello, Some olders permissions appears in drupal 10 upgrade status with an alert :
- access flood control settings page
- access flood unblock

To 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',
    ]);
  }

}
Production build 0.69.0 2024