aboutsummaryrefslogtreecommitdiff
path: root/mod/groups
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2012-07-13 14:42:30 -0700
committerCash Costello <cash.costello@gmail.com>2012-07-13 14:42:30 -0700
commit901cb69ba0b40d247bea5b0e1b4e4588a86800c1 (patch)
tree219721ed17c67eae4a3e9ff946e756ffdd01e9d6 /mod/groups
parent0b00af1e77d7ffc5c739f7fa21f61886b5480e62 (diff)
parentd6953c9955b2b9e3c245936e448e7be41058bb9b (diff)
downloadelgg-901cb69ba0b40d247bea5b0e1b4e4588a86800c1.tar.gz
elgg-901cb69ba0b40d247bea5b0e1b4e4588a86800c1.tar.bz2
Merge pull request #318 from sembrestels/handle-all
Fixes #4687. Handle URLs on plugins that include only handler name.
Diffstat (limited to 'mod/groups')
-rw-r--r--mod/groups/start.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/mod/groups/start.php b/mod/groups/start.php
index 48df338c0..c591410c5 100644
--- a/mod/groups/start.php
+++ b/mod/groups/start.php
@@ -196,6 +196,10 @@ function groups_page_handler($page) {
elgg_load_library('elgg:groups');
+ if (!isset($page[0])) {
+ $page[0] = 'all';
+ }
+
elgg_push_breadcrumb(elgg_echo('groups'), "groups/all");
switch ($page[0]) {
@@ -785,6 +789,10 @@ function discussion_page_handler($page) {
elgg_load_library('elgg:discussion');
+ if (!isset($page[0])) {
+ $page[0] = 'all';
+ }
+
elgg_push_breadcrumb(elgg_echo('discussion'), 'discussion/all');
switch ($page[0]) {