]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
conversations now use generic_comments for replies so no need for the extra logic...
authordave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544>
Wed, 7 Apr 2010 17:08:16 +0000 (17:08 +0000)
committerdave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544>
Wed, 7 Apr 2010 17:08:16 +0000 (17:08 +0000)
git-svn-id: http://code.elgg.org/elgg/trunk@5658 36083f99-b078-4883-b0ff-0f9b5a30f544

mod/riverdashboard/views/default/river/item/wrapper.php

index dba6f995334144e2d1e17d76e79be4f1da4e45c6..16f94e185d910facc80c55119e46b07e54e8fb47 100644 (file)
@@ -17,22 +17,11 @@ if(get_context() == 'profile' && $object->getSubtype() ==  'thewire')
 else
        $user = get_entity($vars['item']->subject_guid);
 
-//get the right annotation type
-//*todo - use the same for comments, everywhere e.g. comment
-switch($vars['item']->subtype){
-       case 'thewire':
-       $annotation_comment = 'wire_reply';
-       break;
-       default:
-       $annotation_comment = 'generic_comment';
-       break;
-}
-
 //count comment annotations
 $comment_count = count_annotations($vars['item']->object_guid, $vars['item']->type, $vars['item']->subtype, $annotation_comment);
 
 //get last three comments display
-$get_comments = get_annotations($vars['item']->object_guid, "", "", $annotation_comment, "", "", 3, 0, "desc");
+$get_comments = get_annotations($vars['item']->object_guid, "", "", 'generic_comment', "", "", 3, 0, "desc");
 
 if($get_comments){
        //reverse the array so we can display comments in the right order