diff options
author | cash <cash.costello@gmail.com> | 2011-11-04 23:29:54 -0400 |
---|---|---|
committer | cash <cash.costello@gmail.com> | 2011-11-04 23:29:54 -0400 |
commit | 0759c227bf7b73254cf6eb5e8502463875f2469f (patch) | |
tree | 556d4d4b1ed2f2032694fa1f1ac28e41f19663f8 /mod/externalpages/start.php | |
parent | 54773892f88f53231b85d08d86d11557121d9609 (diff) | |
download | elgg-0759c227bf7b73254cf6eb5e8502463875f2469f.tar.gz elgg-0759c227bf7b73254cf6eb5e8502463875f2469f.tar.bz2 |
Fixes #4059 returning true when handling a page
Diffstat (limited to 'mod/externalpages/start.php')
-rw-r--r-- | mod/externalpages/start.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mod/externalpages/start.php b/mod/externalpages/start.php index 271051ba9..13235af53 100644 --- a/mod/externalpages/start.php +++ b/mod/externalpages/start.php @@ -53,7 +53,7 @@ function expages_setup_footer_menu() { * * @param array $page URL segements * @param string $handler Handler identifier - * @return void + * @return bool */ function expages_page_handler($page, $handler) { if ($handler == 'expages') { @@ -77,6 +77,7 @@ function expages_page_handler($page, $handler) { $body = elgg_view_layout("one_sidebar", array('content' => $content)); echo elgg_view_page($title, $body); + return true; } /** |