diff options
author | cash <cash.costello@gmail.com> | 2011-11-04 22:40:06 -0400 |
---|---|---|
committer | cash <cash.costello@gmail.com> | 2011-11-04 22:40:06 -0400 |
commit | 54773892f88f53231b85d08d86d11557121d9609 (patch) | |
tree | fcc3738cf8104caf4d65ca261a973458363d19f8 /mod/pages | |
parent | 61a7e2e9e138ec166227794e2de96bdd8a268957 (diff) | |
download | elgg-54773892f88f53231b85d08d86d11557121d9609.tar.gz elgg-54773892f88f53231b85d08d86d11557121d9609.tar.bz2 |
Fixes #4059 page handlers all return nothing
Diffstat (limited to 'mod/pages')
-rw-r--r-- | mod/pages/start.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/mod/pages/start.php b/mod/pages/start.php index 744306649..fd1d7df47 100644 --- a/mod/pages/start.php +++ b/mod/pages/start.php @@ -100,6 +100,7 @@ function pages_init() { * Title is ignored * * @param array $page + * @return void */ function pages_page_handler($page) { @@ -149,12 +150,9 @@ function pages_page_handler($page) { include "$base_dir/revision.php"; break; case 'all': - default: include "$base_dir/world.php"; break; } - - return; } /** |