diff options
author | Brett Profitt <brett.profitt@gmail.com> | 2011-10-29 19:19:48 -0700 |
---|---|---|
committer | Brett Profitt <brett.profitt@gmail.com> | 2011-10-29 19:19:48 -0700 |
commit | a50dd81e3737d8dc14f4a700255b3a19c58988b1 (patch) | |
tree | 6b6fbf2d2c85d425059188d6e9115066a74e535c /views | |
parent | 41842ae982bdea00f8b52a9d610837febe3230ec (diff) | |
download | elgg-a50dd81e3737d8dc14f4a700255b3a19c58988b1.tar.gz elgg-a50dd81e3737d8dc14f4a700255b3a19c58988b1.tar.bz2 |
Fixes #4001. Activity widget passes a context so correct output is displayed upon save.
Diffstat (limited to 'views')
-rw-r--r-- | views/default/widgets/river_widget/content.php | 8 | ||||
-rw-r--r-- | views/default/widgets/river_widget/edit.php | 13 |
2 files changed, 17 insertions, 4 deletions
diff --git a/views/default/widgets/river_widget/content.php b/views/default/widgets/river_widget/content.php index 427fd92bf..867fc9db6 100644 --- a/views/default/widgets/river_widget/content.php +++ b/views/default/widgets/river_widget/content.php @@ -10,13 +10,13 @@ $options = array( 'pagination' => false, ); -if (elgg_in_context('profile')) { - $options['subject_guid'] = elgg_get_page_owner_guid(); -} else { +if (elgg_in_context('dashboard')) { if ($vars['entity']->content_type == 'friends') { - $options['relationship_guid'] = elgg_get_logged_in_user_guid(); + $options['relationship_guid'] = elgg_get_page_owner_guid(); $options['relationship'] = 'friend'; } +} else { + $options['subject_guid'] = elgg_get_page_owner_guid(); } $content = elgg_list_river($options); diff --git a/views/default/widgets/river_widget/edit.php b/views/default/widgets/river_widget/edit.php index e0351e883..228212e47 100644 --- a/views/default/widgets/river_widget/edit.php +++ b/views/default/widgets/river_widget/edit.php @@ -43,3 +43,16 @@ $num_dropdown = elgg_view('input/dropdown', $params); <?php echo elgg_echo('widget:numbertodisplay'); ?>: <?php echo $num_dropdown; ?> </div> + +<?php +// pass the context so we have the correct output upon save. +if (elgg_in_context('dashboard')) { + $context = 'dashboard'; +} else { + $context = 'profile'; +} + +echo elgg_view('input/hidden', array( + 'name' => 'context', + 'value' => $context +));
\ No newline at end of file |