From ac77eea9d42c76a7a4d9a47e11d370b2cd1bef9e Mon Sep 17 00:00:00 2001 From: "Theresa.Grannum" <theresa.grannum@3688861.no-reply.drupal.org> Date: Fri, 15 Apr 2022 15:25:06 +0000 Subject: [PATCH] Issue #3275313 by Theresa.Grannum: Empty bullet point on Package Manager's help page --- package_manager/package_manager.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_manager/package_manager.module b/package_manager/package_manager.module index 338a3ce447..84b6af9b57 100644 --- a/package_manager/package_manager.module +++ b/package_manager/package_manager.module @@ -24,7 +24,7 @@ function package_manager_help($route_name, RouteMatchInterface $route_match) { $output .= '<ul>'; $output .= '<li>' . t('Package Manager can only maintain one copy of the site at any given time. If a copy of the site already exists, another one cannot be created until the existing copy is destroyed.') . '</li>'; $output .= '<li>' . t('The temporary copy of the site is associated with the user or session that originally created it, and only that user or session can make changes to it.') . '</li>'; - $output .= '<li>' . t('Modules cannot be uninstalled while Package Manager is syncing changes into live site.') . '<li>'; + $output .= '<li>' . t('Modules cannot be uninstalled while Package Manager is syncing changes into live site.') . '</li>'; $output .= '</ul>'; $output .= '<p>' . t('For more information, see the <a href=":package-manager-documentation">online documentation for the Package Manager module</a>.', [':package-manager-documentation' => 'https://www.drupal.org/docs/8/core/modules/package-manager']) . '</p>'; return $output; -- GitLab