Closed (fixed)
Project:
Webform
Version:
6.3.x-dev
Component:
Code
Priority:
Normal
Category:
Task
Assigned:
Unassigned
Reporter:
Created:
16 Jan 2026 at 16:56 UTC
Updated:
2 Feb 2026 at 16:14 UTC
Jump to comment: Most recent
In webform_node_test_translation.install, Webform uses core function content_translation_form_language_content_settings_submit() but that was removed in #3548571: Deprecate functions from content_translation.admin.inc, commit 709a9bb. This causes a test failure on "phpunit (next minor)".
Replace use of this function with static method Drupal\content_translation\Hook\ContentTranslationFormLanguageHooks::languageContentSettingsSubmit(). If this classes exists, use it; otherwise, use the old function.
Implement.
None.
None.
None.
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #2
liam morlandComment #5
ritarshi_chakraborty commentedComment #8
liam morlandThanks!