From f1d04f612fe861cc1be91b74752513acbc6182c0 Mon Sep 17 00:00:00 2001 From: catch <catch@35733.no-reply.drupal.org> Date: Tue, 9 Jan 2024 10:10:29 +0000 Subject: [PATCH] Issue #3410361 by claudiu.cristea, jonathan1055, lauriii: Fix the deprecation URL for #3356894 and #3372097 --- core/lib/Drupal/Core/Field/FieldTypePluginManager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/lib/Drupal/Core/Field/FieldTypePluginManager.php b/core/lib/Drupal/Core/Field/FieldTypePluginManager.php index f3f6fe0b52c7..228f3bb8d2c0 100644 --- a/core/lib/Drupal/Core/Field/FieldTypePluginManager.php +++ b/core/lib/Drupal/Core/Field/FieldTypePluginManager.php @@ -101,7 +101,7 @@ public function processDefinition(&$definition, $plugin_id) { } if ($definition['category'] instanceof TranslatableMarkup) { - @trigger_error('Using a translatable string as a category for field type is deprecated in drupal:10.2.0 and is removed from drupal:11.0.0. See https://www.drupal.org/node/3364271', E_USER_DEPRECATED); + @trigger_error('Using a translatable string as a category for field type is deprecated in drupal:10.2.0 and is removed from drupal:11.0.0. See https://www.drupal.org/node/3375748', E_USER_DEPRECATED); $definition['category'] = FieldTypeCategoryManagerInterface::FALLBACK_CATEGORY; } elseif (empty($definition['category'])) { -- GitLab