diff --git a/core/modules/menu/lib/Drupal/menu/MenuFormController.php b/core/modules/menu/lib/Drupal/menu/MenuFormController.php index d5b8106..62a92ff 100644 --- a/core/modules/menu/lib/Drupal/menu/MenuFormController.php +++ b/core/modules/menu/lib/Drupal/menu/MenuFormController.php @@ -143,8 +143,8 @@ protected function actions(array $form, array &$form_state) { // We cannot leverage the regular submit handler definition because we have // button-specific ones here. Hence we need to explicitly set it for the // submit action, otherwise it would be ignored. - if ($this->moduleHandler->moduleExists('translation_entity')) { - array_unshift($actions['submit']['#submit'], 'translation_entity_language_configuration_element_submit'); + if ($this->moduleHandler->moduleExists('content_translation')) { + array_unshift($actions['submit']['#submit'], 'content_translation_language_configuration_element_submit'); } return $actions; }