From 6d7ec44ea4333ea54050e51568f06bb950d0cacf Mon Sep 17 00:00:00 2001 From: xjm <xjm@65776.no-reply.drupal.org> Date: Tue, 27 Dec 2022 13:34:14 -0600 Subject: [PATCH] Issue #2807807 by Prashant.c, DanielVeza, cilefen: Properly wrap action module help for the "add" and "edit" options in a <p> tag --- core/modules/action/action.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/action/action.module b/core/modules/action/action.module index b346e4830db1..c37bd9230d0f 100644 --- a/core/modules/action/action.module +++ b/core/modules/action/action.module @@ -34,7 +34,7 @@ function action_help($route_name, RouteMatchInterface $route_match) { case 'action.admin_add': case 'entity.action.edit_form': - return t('An advanced action offers additional configuration options which may be filled out below. Changing the <em>Label</em> field is recommended in order to better identify the precise action taking place.'); + return '<p>' . t('An advanced action offers additional configuration options which may be filled out below. Changing the <em>Label</em> field is recommended in order to better identify the precise action taking place.') . '</p>'; } } -- GitLab