aboutsummaryrefslogtreecommitdiff
path: root/mod/diagnostics
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-11-09 01:09:50 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-11-09 01:09:50 +0000
commit49e478da9d5540da798a7d497615f0d2903c8e4a (patch)
tree04a91f3028df014fb2a33b57f614acf88a07805b /mod/diagnostics
parent8c4fe01968aecea2ccfe6146ff580a272750e4d7 (diff)
downloadelgg-49e478da9d5540da798a7d497615f0d2903c8e4a.tar.gz
elgg-49e478da9d5540da798a7d497615f0d2903c8e4a.tar.bz2
Fixes #2631 removes 'elgg_' namespace from the page element views - anyone working with the trunk will need to update their theme and/or flush their cache
git-svn-id: http://code.elgg.org/elgg/trunk@7268 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/diagnostics')
-rw-r--r--mod/diagnostics/index.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/diagnostics/index.php b/mod/diagnostics/index.php
index 9bc58b56a..657915e66 100644
--- a/mod/diagnostics/index.php
+++ b/mod/diagnostics/index.php
@@ -13,7 +13,7 @@ elgg_set_context('admin');
// system diagnostics
$body = elgg_view_title(elgg_echo('diagnostics'));
$body .= "<div class='admin_settings diagnostics'>";
-$body .= elgg_view('page_elements/elgg_content', array('body' =>
+$body .= elgg_view('page_elements/content', array('body' =>
"<h3>".elgg_echo('diagnostics:report')."</h3>".elgg_echo('diagnostics:description') . elgg_view('diagnostics/forms/download'))
);
@@ -32,7 +32,7 @@ if (isset($CONFIG->debug)) {
$test_body .= elgg_echo('diagnostics:unittester:debug');
}
-$body .= elgg_view('page_elements/elgg_content', array(
+$body .= elgg_view('page_elements/content', array(
'body' => $test_body)
);
$body .= "</div>";