summaryrefslogtreecommitdiff
path: root/modules/profile
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-10-10 21:39:03 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-10-10 21:39:03 +0000
commit7ed3cf3b133aa980f110ebf6585d69448e2cb6ef (patch)
tree339a7d195ff16193147088110d96493d4c99f34b /modules/profile
parent7bcd22f1c85cc20c3a0d959a216409ee0d8b66ad (diff)
downloadbrdo-7ed3cf3b133aa980f110ebf6585d69448e2cb6ef.tar.gz
brdo-7ed3cf3b133aa980f110ebf6585d69448e2cb6ef.tar.bz2
#569238 by sun, swentel, catch: Changed Make check_markup() not cache by default.
Diffstat (limited to 'modules/profile')
-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 aac2c8105..6bef40933 100644
--- a/modules/profile/profile.module
+++ b/modules/profile/profile.module
@@ -280,7 +280,7 @@ function profile_view_field($account, $field) {
if (isset($account->{$field->name}) && $value = $account->{$field->name}) {
switch ($field->type) {
case 'textarea':
- return check_markup($value, filter_default_format($account));
+ return check_markup($value, filter_default_format($account), '', TRUE);
case 'textfield':
case 'selection':
return $browse ? l($value, 'profile/' . $field->name . '/' . $value) : check_plain($value);