diff --git a/core/modules/content_translation/lib/Drupal/content_translation/Form/ContentTranslationForm.php b/core/modules/content_translation/lib/Drupal/content_translation/Form/ContentTranslationForm.php index 7142a49..e4d7fe9 100644 --- a/core/modules/content_translation/lib/Drupal/content_translation/Form/ContentTranslationForm.php +++ b/core/modules/content_translation/lib/Drupal/content_translation/Form/ContentTranslationForm.php @@ -19,10 +19,10 @@ class ContentTranslationForm { * * @todo Remove content_translation_delete_confirm(). */ - public function deleteTranslation(EntityInterface $entity, $language) { + public function deleteTranslation(EntityInterface $_entity, $language) { module_load_include('pages.inc', 'content_translation'); $language = language_load($language); - return drupal_get_form('content_translation_delete_confirm', $entity, $language); + return drupal_get_form('content_translation_delete_confirm', $_entity, $language); } }