summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2008-02-03 19:36:46 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2008-02-03 19:36:46 +0000
commit18514216349c29008881ffb320c914997c66a5ea (patch)
tree4d3d672076bc5e0a5c381122147b9b14d7b82cc1 /modules
parent9bb28aa8592af8180da43759e079e70a6745eaad (diff)
downloadbrdo-18514216349c29008881ffb320c914997c66a5ea.tar.gz
brdo-18514216349c29008881ffb320c914997c66a5ea.tar.bz2
#172597 by Rob Loach: minor double escaping in profile module
Diffstat (limited to 'modules')
-rw-r--r--modules/profile/profile.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/profile/profile.module b/modules/profile/profile.module
index 20d39547d..c75c1132f 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,
);
}