here is how to disable user notification when a comment gets deleted.
joomlacomment 3.26
file:
administrator/components/com_comment/admin.comment.php
line:
1067
if (mosGetParam( $_REQUEST, 'confirm_notify', 0 )) {
$notification = new JOSC_notification($config);
$sentemail = $notification->notifyComments($cids, 'delete');
mosRedirect("index2.php?option=$option", $sentemail ? (_JOOMLACOMMENT_ADMIN_NOTIFY_SENT_TO.$sentemail):_JOOMLACOMMENT_ADMIN_NOTIFY_NOT_SENT);
}
replace with (simply comment out):
/*
if (mosGetParam( $_REQUEST, 'confirm_notify', 0 )) {
$notification = new JOSC_notification($config);
$sentemail = $notification->notifyComments($cids, 'delete');
mosRedirect("index2.php?option=$option", $sentemail ? (_JOOMLACOMMENT_ADMIN_NOTIFY_SENT_TO.$sentemail):_JOOMLACOMMENT_ADMIN_NOTIFY_NOT_SENT);
}
*/
I hope that helps someone.