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/admin/plugins.php | |
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/admin/plugins.php')
-rw-r--r-- | views/default/admin/plugins.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/default/admin/plugins.php b/views/default/admin/plugins.php index 17ab86eae..9e14eaa2e 100644 --- a/views/default/admin/plugins.php +++ b/views/default/admin/plugins.php @@ -18,7 +18,7 @@ // Description of what's going on $buttons = " <a class='enableallplugins' href=\"{$CONFIG->url}action/admin/plugins/enableall?__elgg_token=$token&__elgg_ts=$ts\">".elgg_echo('enableall')."</a> <a class='disableallplugins' href=\"{$CONFIG->url}action/admin/plugins/disableall?__elgg_token=$token&__elgg_ts=$ts\">".elgg_echo('disableall')."</a> "; - echo "<div class=\"contentWrapper\"><span class=\"contentIntro\">" . $buttons . autop(elgg_echo("admin:plugins:description")) . "<div class='clearfloat'></div></span></div>"; + echo "<div class=\"contentWrapper\"><span class=\"contentIntro\">" . $buttons . elgg_view('output/longtext', array('value' => elgg_echo("admin:plugins:description"))) . "<div class='clearfloat'></div></span></div>"; $limit = get_input('limit', 10); $offset = get_input('offset', 0); |