/**
  * @see	\wcf\system\comment\manager\ICommentManager::canDeleteComment()
  */
 public function canDeleteComment(Comment $comment)
 {
     if ($comment->objectID == WCF::getUser()->userID && WCF::getSession()->getPermission('user.profileComment.canDeleteCommentInOwnProfile')) {
         return true;
     }
     return parent::canDeleteComment($comment);
 }