No there is no such functionality by default, however it is possible by implementing small modification by changing the following code:
function isRemoveAllowedAll()
{
$oMain = $this->getMain();
$aBlogPost = $oMain->_oDb->getPostInfo($this->getId(), 0, true);
if ($oMain->isAllowedCreatorCommentsDeleteAndEdit($aBlogPost))
return true;
return parent::isRemoveAllowedAll();
}
to:
function isRemoveAllowedAll()
{
$oMain = $this->getMain();
$aBlogPost = $oMain->_oDb->getPostInfo($this->getId(), 0, true);
if (getLoggedId() == $aBlogPost['OwnerID'] || $oMain->isAllowedCreatorCommentsDeleteAndEdit($aBlogPost))
return true;
return parent::isRemoveAllowedAll();
}
in modules/boonex/blogs/classes/BxBlogsCmts.php file.
That is not what I want then. Members are asking to be able to delete a comment left on their blog posts; which they should be able to do since it is their blog and their blog post. Is this built into Dolphin 7.1?