aboutsummaryrefslogtreecommitdiff
path: root/mod/diagnostics
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-12-29 22:05:01 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-12-29 22:05:01 +0000
commit67d881e0dc3098800038127441836189f84b4322 (patch)
tree52dd22ea0e818e0c9ec79de05743ba9bf7a36fe6 /mod/diagnostics
parentd276934f6d90134a96b57d22d69ecedd29e6d03a (diff)
downloadelgg-67d881e0dc3098800038127441836189f84b4322.tar.gz
elgg-67d881e0dc3098800038127441836189f84b4322.tar.bz2
Fixes #2241 - removed direct calls to the content wrapper view and removed the view as it is been replaced by a body view
git-svn-id: http://code.elgg.org/elgg/trunk@7759 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/diagnostics')
-rw-r--r--mod/diagnostics/index.php8
1 files changed, 2 insertions, 6 deletions
diff --git a/mod/diagnostics/index.php b/mod/diagnostics/index.php
index 4f746c1c1..1ef9e5344 100644
--- a/mod/diagnostics/index.php
+++ b/mod/diagnostics/index.php
@@ -13,9 +13,7 @@ elgg_set_context('admin');
// system diagnostics
$content = elgg_view_title(elgg_echo('diagnostics'));
$content .= "<div class='admin_settings diagnostics'>";
-$content .= elgg_view('page/elements/content', array('body' =>
- "<h3>".elgg_echo('diagnostics:report')."</h3>".elgg_echo('diagnostics:description') . elgg_view('diagnostics/forms/download'))
-);
+$content .= "<h3>".elgg_echo('diagnostics:report')."</h3>".elgg_echo('diagnostics:description') . elgg_view('diagnostics/forms/download');
// unit tests
$content .= "<h3>".elgg_echo('diagnostics:unittester')."</h3>";
@@ -32,9 +30,7 @@ if (isset($CONFIG->debug)) {
$test_body .= elgg_echo('diagnostics:unittester:debug');
}
-$content .= elgg_view('page/elements/content', array(
- 'body' => $test_body)
-);
+$content .= $test_body;
$content .= "</div>";
$body = elgg_view_layout("one_column_with_sidebar", array('content' => $content));