diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-04-08 12:46:15 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-04-08 12:46:15 +0000 |
commit | f4829462077dff01b34343fee26b97500b2e5139 (patch) | |
tree | 0c8b80077d873931cfb50f8d56956ef87f6006d8 /mod/profile/views | |
parent | 64c695a0fbd9b358a30e3aad3922399cc630dcd8 (diff) | |
download | elgg-f4829462077dff01b34343fee26b97500b2e5139.tar.gz elgg-f4829462077dff01b34343fee26b97500b2e5139.tar.bz2 |
Refs #963: Autop changed to longtext on standard views
git-svn-id: https://code.elgg.org/elgg/trunk@3193 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/profile/views')
-rw-r--r-- | mod/profile/views/default/profile/userdetails.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mod/profile/views/default/profile/userdetails.php b/mod/profile/views/default/profile/userdetails.php index 9cc415dd5..0314cdfe4 100644 --- a/mod/profile/views/default/profile/userdetails.php +++ b/mod/profile/views/default/profile/userdetails.php @@ -146,7 +146,10 @@ <?php } else { ?>
- <?php echo autop(filter_tags($vars['entity']->description)); ?>
+ <?php + echo elgg_view('output/longtext', array('value' => $vars['entity']->description)); + //echo autop(filter_tags($vars['entity']->description)); + ?>
<?php } ?>
|