From 18514216349c29008881ffb320c914997c66a5ea Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?G=C3=A1bor=20Hojtsy?= <gabor@hojtsy.hu>
Date: Sun, 3 Feb 2008 19:36:46 +0000
Subject: [PATCH] #172597 by Rob Loach: minor double escaping in profile module

---
 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 20d39547da6c..c75c1132f7ec 100644
--- a/modules/profile/profile.module
+++ b/modules/profile/profile.module
@@ -311,7 +311,7 @@ function profile_view_profile(&$user) {
       if (!isset($user->content[$field->category])) {
         $user->content[$field->category] = array(
           '#type' => 'user_profile_category',
-          '#title' => check_plain($field->category),
+          '#title' => $field->category,
         );
       }
 
-- 
GitLab