summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-10-15 17:15:17 +0000
committerDries Buytaert <dries@buytaert.net>2003-10-15 17:15:17 +0000
commit7624580f76937fbb004f81da8e6069dbb16921dc (patch)
tree2c278f09c0bc1ef7c44633039ce1b02b378501dd
parent53f538fe1dfb8ed53892f33b4a3252acaa7f9408 (diff)
downloadbrdo-7624580f76937fbb004f81da8e6069dbb16921dc.tar.gz
brdo-7624580f76937fbb004f81da8e6069dbb16921dc.tar.bz2
- Bugfix: added a missing break statement. Patch by Stefan.
-rw-r--r--modules/user.module1
-rw-r--r--modules/user/user.module1
2 files changed, 2 insertions, 0 deletions
diff --git a/modules/user.module b/modules/user.module
index 6537ea99c..6142d4c57 100644
--- a/modules/user.module
+++ b/modules/user.module
@@ -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;
diff --git a/modules/user/user.module b/modules/user/user.module
index 6537ea99c..6142d4c57 100644
--- a/modules/user/user.module
+++ b/modules/user/user.module
@@ -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;