From 7624580f76937fbb004f81da8e6069dbb16921dc Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Wed, 15 Oct 2003 17:15:17 +0000 Subject: [PATCH] - Bugfix: added a missing break statement. Patch by Stefan. --- modules/user.module | 1 + modules/user/user.module | 1 + 2 files changed, 2 insertions(+) diff --git a/modules/user.module b/modules/user.module index 6537ea99c46..6142d4c5777 100644 --- a/modules/user.module +++ b/modules/user.module @@ -1704,6 +1704,7 @@ function user_help($section = "admin/help#user") { $output .= "
  • Authenticated user: this role is assigned automatically to authenticated users. Most registered users will belong to this user role unless specified otherwise.
  • "; $output .= ""; $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; diff --git a/modules/user/user.module b/modules/user/user.module index 6537ea99c46..6142d4c5777 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -1704,6 +1704,7 @@ function user_help($section = "admin/help#user") { $output .= "
  • Authenticated user: this role is assigned automatically to authenticated users. Most registered users will belong to this user role unless specified otherwise.
  • "; $output .= ""; $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;