From 2127487be333110bdb96b0f3fd41128aa48bb537 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Mon, 23 Apr 2007 17:02:17 +0000 Subject: [PATCH] - Patch #121425 by Chris Bray: fixed capitalization glitch. --- modules/profile/profile.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/profile/profile.module b/modules/profile/profile.module index fd2a8c6aca9..3c0faa55da0 100644 --- a/modules/profile/profile.module +++ b/modules/profile/profile.module @@ -538,7 +538,7 @@ function profile_browse() { $output .= ''; $output .= theme('pager', NULL, 20); - drupal_set_title(t('user list')); + drupal_set_title(t('User list')); return $output; } }