aboutsummaryrefslogtreecommitdiff
path: root/mod/dashboard/start.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/dashboard/start.php')
-rw-r--r--mod/dashboard/start.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/mod/dashboard/start.php b/mod/dashboard/start.php
index 0197ee64f..65007d1a8 100644
--- a/mod/dashboard/start.php
+++ b/mod/dashboard/start.php
@@ -31,7 +31,7 @@ function dashboard_init() {
/**
* Dashboard page handler
- * @return void
+ * @return bool
*/
function dashboard_page_handler() {
// Ensure that only logged-in users can see this page
@@ -55,6 +55,7 @@ function dashboard_page_handler() {
$body = elgg_view_layout('one_column', array('content' => $widgets));
echo elgg_view_page($title, $body);
+ return true;
}