Vanilla 1.1.5 is a product of Lussumo. More Information: Documentation, Community Support.
Help keep Vanilla free:
Index: themes/search_results_comments.php
===================================================================
--- themes/search_results_comments.php (revision 741)
+++ themes/search_results_comments.php (working copy)
@@ -22,7 +22,12 @@
<li class="CommentAdded">
<span>'.$this->Context->GetDefinition('Added').'</span>
'.TimeDiff($this->Context, $Comment->DateCreated,mktime()).'
- </li>
+ </li>';
+$this->DelegateParameters['Comment'] = &$Comment;
+$this->DelegateParameters['CommentList'] = &$CommentList;
+$this->CallDelegate('PostCommentOptionsRender');
+
+$CommentList .= '
</ul>
</li>
';
Index: themes/search_results_users.php
===================================================================
--- themes/search_results_users.php (revision 741)
+++ themes/search_results_users.php (working copy)
@@ -23,7 +23,12 @@
</li>
<li class="User CommentsAdded">
<span>'.$this->Context->GetDefinition('CommentsAdded').'</span> '.$u->CountComments.'
- </li>
+ </li>';
+$this->DelegateParameters['User'] = &$u;
+$this->DelegateParameters['UserList'] = &$UserList;
+$this->CallDelegate('PostUserOptionsRender');
+
+$UserList .= '
</ul>
</li>';
1 to 6 of 6