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 /views/default/usersettings | |
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 'views/default/usersettings')
-rw-r--r-- | views/default/usersettings/main.php | 2 | ||||
-rw-r--r-- | views/default/usersettings/plugins.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/views/default/usersettings/main.php b/views/default/usersettings/main.php index 4a814c083..39ef5486e 100644 --- a/views/default/usersettings/main.php +++ b/views/default/usersettings/main.php @@ -12,5 +12,5 @@ */ // Description of what's going on - echo "<p>" . autop(elgg_echo("usersettings:description")) . "</p>"; + echo "<p>" . elgg_view('output/longtext', array('value' => elgg_echo("usersettings:description"))) . "</p>"; ?>
\ No newline at end of file diff --git a/views/default/usersettings/plugins.php b/views/default/usersettings/plugins.php index 6573766f7..c18c5aaef 100644 --- a/views/default/usersettings/plugins.php +++ b/views/default/usersettings/plugins.php @@ -11,7 +11,7 @@ */ // Description of what's going on - echo "<div class=\"contentWrapper\">" . autop(elgg_echo("usersettings:plugins:description")) . "</div>"; + echo "<div class=\"contentWrapper\">" . elgg_view('output/longtext', array('value' => elgg_echo("usersettings:plugins:description"))) . "</div>"; $limit = get_input('limit', 10); $offset = get_input('offset', 0); |