aboutsummaryrefslogtreecommitdiff
path: root/mod
diff options
context:
space:
mode:
authormarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-04-08 12:46:15 +0000
committermarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-04-08 12:46:15 +0000
commitf4829462077dff01b34343fee26b97500b2e5139 (patch)
tree0c8b80077d873931cfb50f8d56956ef87f6006d8 /mod
parent64c695a0fbd9b358a30e3aad3922399cc630dcd8 (diff)
downloadelgg-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')
-rw-r--r--mod/profile/views/default/profile/userdetails.php5
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 } ?>