aboutsummaryrefslogtreecommitdiff
path: root/mod/riverdashboard/start.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/riverdashboard/start.php')
-rw-r--r--mod/riverdashboard/start.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/mod/riverdashboard/start.php b/mod/riverdashboard/start.php
index 9f64f4c9d..e30681f75 100644
--- a/mod/riverdashboard/start.php
+++ b/mod/riverdashboard/start.php
@@ -8,12 +8,12 @@
function riverdashboard_init() {
global $CONFIG;
// Register and optionally replace the dashboard
- register_page_handler('dashboard','riverdashboard_page_handler');
+ register_page_handler('dashboard', 'riverdashboard_page_handler');
add_menu(elgg_echo('activity'), $CONFIG->wwwroot . "mod/riverdashboard/");
// Page handler
- register_page_handler('riverdashboard','riverdashboard_page_handler');
- elgg_extend_view('css','riverdashboard/css');
+ register_page_handler('riverdashboard', 'riverdashboard_page_handler');
+ elgg_extend_view('css', 'riverdashboard/css');
// add an activity stream ECML keyword
// we'll restrict it to use in sitepages's custom_frontpage
@@ -41,7 +41,7 @@ function elgg_make_river_comment($entity){
return false;
} else {
//display the comment form
- $comments = elgg_view('riverdashboard/rivercomment',array('entity' => $entity));
+ $comments = elgg_view('riverdashboard/rivercomment', array('entity' => $entity));
return $comments;
}
}