Skip to content
Snippets Groups Projects
Commit 7624580f authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Bugfix: added a missing break statement.  Patch by Stefan.
parent 53f538fe
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -1704,6 +1704,7 @@ function user_help($section = "admin/help#user") {
$output .= "<li>Authenticated user: this role is assigned automatically to authenticated users. Most registered users will belong to this user role unless specified otherwise.</li>";
$output .= "</ul>";
$output = t($output, array("%permission" => l(t("user permissions"), "admin/user/permission")));
break;
case 'admin/user/search':
$output .= t("Enter a simple pattern ( '*' may be user as a wildcard match) to search for a username. For example, one may search for 'br' and Drupal might return 'brian', 'brad', and 'brenda'.");
break;
......
......@@ -1704,6 +1704,7 @@ function user_help($section = "admin/help#user") {
$output .= "<li>Authenticated user: this role is assigned automatically to authenticated users. Most registered users will belong to this user role unless specified otherwise.</li>";
$output .= "</ul>";
$output = t($output, array("%permission" => l(t("user permissions"), "admin/user/permission")));
break;
case 'admin/user/search':
$output .= t("Enter a simple pattern ( '*' may be user as a wildcard match) to search for a username. For example, one may search for 'br' and Drupal might return 'brian', 'brad', and 'brenda'.");
break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment