🇬🇷Greece dspachos
Patch enhanced to coner also the getUrlIfValidWithoutAccessCheck()
🇬🇷Greece dspachos
Perhaps related: #3314941 →
🇬🇷Greece dspachos
Working on a patch
🐛 | Carry URL address query params across pages | Drupal 10: Replace jQuery once with the core/once library
🇬🇷Greece dspachos
🐛 | Carry URL address query params across pages | Drupal 10: Replace jQuery once with the core/once library
🇬🇷Greece dspachos
dspachos → created an issue.
🇬🇷Greece dspachos
I can confirm as well (latest Mac OS - Safari)
🐛 | Drupal core | Assert error when entity_reference field has only allowed bundle and cardinality multiple
🇬🇷Greece dspachos
I cannot reproduce in fresh 9.5.x installation, need some more details about it
🐛 | Automated Logout | Reset Session dialog not triggered due to inactivity after clicky "Yes" to reset the session
🇬🇷Greece dspachos
Hi! I cannot reproduce, can you please provide detailed steps on how to reproduce the issue?
🇬🇷Greece dspachos
Hi, you need to implement a custom hook, something like that:
/**
* Implements hook_menu_local_tasks_alter()
*/
function MYMODULE_menu_local_tasks_alter(&$data, $route_name, RefinableCacheableDependencyInterface &$cacheability) {
if ($route_name == 'system.admin_content') {
unset($data['tabs'][1]['content_moderation.content']);
}
}