From c6281c464cb2dcc69abc09902552a77c6afe5e41 Mon Sep 17 00:00:00 2001 From: Steven Wittens Date: Mon, 20 Sep 2004 23:42:11 +0000 Subject: Profile.module: removing incorrect use of strtolower which messes up UTF-8 data. --- modules/profile/profile.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/profile/profile.module') diff --git a/modules/profile/profile.module b/modules/profile/profile.module index d4e1bb595..6d5af09e2 100644 --- a/modules/profile/profile.module +++ b/modules/profile/profile.module @@ -370,7 +370,7 @@ function profile_validate_profile($edit, $category) { function profile_categories() { $result = db_query("SELECT DISTINCT(category) FROM {profile_fields}"); while ($category = db_fetch_object($result)) { - $data[] = array('name' => drupal_specialchars(strtolower($category->category)), 'title' => strtolower($category->category), 'weight' => 3); + $data[] = array('name' => drupal_specialchars($category->category), 'title' => $category->category, 'weight' => 3); } return $data; } -- cgit v1.2.3