diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2005-07-29 21:06:33 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2005-07-29 21:06:33 +0000 |
commit | e4096e14180d231574e1830fcc61b823a71592b3 (patch) | |
tree | 71bc1ea8c50654fa9ec530ec602b9ca419a300a9 /modules/profile | |
parent | e5ad13e3f8a95b9add11f181e50e96003a597ebf (diff) | |
download | brdo-e4096e14180d231574e1830fcc61b823a71592b3.tar.gz brdo-e4096e14180d231574e1830fcc61b823a71592b3.tar.bz2 |
- #27551: Rename check_output() to check_markup(). Needs contrib updates!
Diffstat (limited to 'modules/profile')
-rw-r--r-- | modules/profile/profile.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/profile/profile.module b/modules/profile/profile.module index 184a03ba2..a62c23385 100644 --- a/modules/profile/profile.module +++ b/modules/profile/profile.module @@ -246,7 +246,7 @@ function profile_view_field($user, $field) { case 'textfield': return check_plain($value); case 'textarea': - return check_output($value); + return check_markup($value); case 'selection': return $browse ? l($value, "profile/$field->name/$value") : check_plain($value); case 'checkbox': |