Hi,
On the easyboard dashboard comment view you get to see the permanent url of the comment with the following :
<?php if ($comment->isPublished()) { ?>
<li>
<a href="/<?php echo $comment->getPermalink();?>" target="_blank"><?php echo JText::_('COM_EASYBLOG_DASHBOARD_VIEW_COMMENT');?></a>
</li>
<?php } ?>
However if you just copy and paste this line in the latest comment module both
the "isPublished()" or "getPermalink()" method are not usable(Call to undefined method error)
How can I use those methods in tmpl/default.php (I did not find any particular include in the default.php of the dashboard comment view)?
Thank you for your time.