aboutsummaryrefslogtreecommitdiff
path: root/mod/reportedcontent/start.php
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-01-26 02:08:49 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-01-26 02:08:49 +0000
commit2601fb071cf566ea1f8859268f9cbf22ae77f6a1 (patch)
treebb232fcf0b1c00ccdaaa748cf5555b7b3b2360c7 /mod/reportedcontent/start.php
parent2ef37109d866708def220d082c0430f77efd6410 (diff)
downloadelgg-2601fb071cf566ea1f8859268f9cbf22ae77f6a1.tar.gz
elgg-2601fb071cf566ea1f8859268f9cbf22ae77f6a1.tar.bz2
added reported content widget
git-svn-id: http://code.elgg.org/elgg/trunk@7932 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/reportedcontent/start.php')
-rw-r--r--mod/reportedcontent/start.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/mod/reportedcontent/start.php b/mod/reportedcontent/start.php
index 9708c3b14..4cb5bea12 100644
--- a/mod/reportedcontent/start.php
+++ b/mod/reportedcontent/start.php
@@ -5,7 +5,7 @@
* @package ElggReportedContent
*/
-elgg_register_event_handler('init','system','reportedcontent_init');
+elgg_register_event_handler('init', 'system', 'reportedcontent_init');
/**
* Initialize the plugin
@@ -55,11 +55,11 @@ function reportedcontent_page_handler($page) {
$content .= elgg_view_title(elgg_echo('reportedcontent:this'));
$content .= elgg_view('reportedcontent/form');
- $sidebar .= elgg_echo('reportedcontent:instructions');
+ $sidebar = elgg_echo('reportedcontent:instructions');
$params = array(
'content' => $content,
- 'sidebar' => $sidebar
+ 'sidebar' => $sidebar,
);
$body = elgg_view_layout('one_sidebar', $params);