diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-05-24 15:40:47 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-05-24 15:40:47 +0000 |
commit | 65c5ba06227db6c4847fbe17a1ac35a52ed40b02 (patch) | |
tree | d9bbfa236e8e9481eb464d70c316052c89a79044 /mod/riverdashboard/views/default/river | |
parent | f56c4ae4c881345e0a11d1f24a2e6a06668fb0ca (diff) | |
download | elgg-65c5ba06227db6c4847fbe17a1ac35a52ed40b02.tar.gz elgg-65c5ba06227db6c4847fbe17a1ac35a52ed40b02.tar.bz2 |
The activity stream's count uses the river table instead of trying to combine entities + annotations based up on time_created.
Also brought small bits of code up to standards.
git-svn-id: http://code.elgg.org/elgg/trunk@6173 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/riverdashboard/views/default/river')
-rw-r--r-- | mod/riverdashboard/views/default/river/item/list.php | 2 | ||||
-rw-r--r-- | mod/riverdashboard/views/default/river/item/wrapper.php | 24 |
2 files changed, 13 insertions, 13 deletions
diff --git a/mod/riverdashboard/views/default/river/item/list.php b/mod/riverdashboard/views/default/river/item/list.php index 4c3e240ac..bddb2f5e4 100644 --- a/mod/riverdashboard/views/default/river/item/list.php +++ b/mod/riverdashboard/views/default/river/item/list.php @@ -16,7 +16,7 @@ if (isset($vars['items']) && is_array($vars['items'])) { if ($vars['pagination'] !== false) { $baseurl = $_SERVER['REQUEST_URI']; - $baseurl = $baseurl = preg_replace('/[\&\?]offset\=[0-9]*/',"",$baseurl); + $baseurl = preg_replace('/[\&\?]offset\=[0-9]*/',"",$baseurl); $nav = ''; diff --git a/mod/riverdashboard/views/default/river/item/wrapper.php b/mod/riverdashboard/views/default/river/item/wrapper.php index 8506262a8..b90b00f99 100644 --- a/mod/riverdashboard/views/default/river/item/wrapper.php +++ b/mod/riverdashboard/views/default/river/item/wrapper.php @@ -41,31 +41,31 @@ if ($comment_count < 3) { <?php echo elgg_view("profile/icon",array('entity' => $user, 'size' => 'small')); ?> </span> <div class="river_item_contents clearfloat"> - <?php + <?php // body contents, generated by the river view in each plugin - echo $vars['body']; - + echo $vars['body']; + //display latest 3 comments if there are any if ($get_comments){ $counter = 0; //$background = ""; - + echo "<div class='river_comments_tabs clearfloat'>"; - + if ($comment_count <= 3) { echo "<a class='river_more_comments show_comments_button link'>Comments</a>"; } - + //display 'more comments' if there are any if ($num_comments != 0) { echo "<a class='river_more_comments show_comments_button link'>Comments (+{$num_comments} more)</a>"; } - + if ($numoflikes != 0) { echo elgg_view('likes/forms/display', array('entity' => $object)); } echo "</div>"; // close river_comments_tabs - + echo "<div class='river_comments'>"; if ($numoflikes != 0) { @@ -74,7 +74,7 @@ if ($get_comments){ echo list_annotations($object->getGUID(), 'likes', 99); echo "</div>"; } - + foreach ($get_comments as $gc) { //get the comment owner $comment_owner = get_user($gc->owner_guid); @@ -107,7 +107,7 @@ if ($get_comments){ } else { // tab bar nav - for users that liked object $numoflikes = elgg_count_likes($object); - + if ($vars['item']->type != 'user' && $numoflikes != 0) { echo "<div class='river_comments_tabs clearfloat'>"; } @@ -117,7 +117,7 @@ if ($get_comments){ if ($vars['item']->type != 'user' && $numoflikes != 0) { echo "</div>"; // close river_comments_tabs } - + if ($vars['item']->type != 'user') { echo "<div class='river_comments'>"; } @@ -127,7 +127,7 @@ if ($get_comments){ echo list_annotations($object->getGUID(), 'likes', 99); echo "</div>"; } - + // if there are no comments to display // and this is not a user or a group discussion entry - include the inline comment form if ($vars['item']->type != 'user' && $vars['item']->subtype != 'groupforumtopic') { |