1 lowcarbscoop May 12, 2006 21:45
3 yabba May 13, 2006 19:19
balupton wrote:
In your _config.php file just make $admin_email equal a bad email address like 'do.not@email.me'....
I'll post this in the feature requests section;
http://forums.b2evolution.net/viewtopic.php?p=36603#36603
If you did that on my server you'd end up with me sending you a tad of a pissed of email telling you to sort your script out before I suspend your account as I get all bounced emails.
¥
4 balupton May 13, 2006 19:39
Well it would still work.
Here are a few better fixes;
Remove comment notifications;
[Blog Version 1.8]
Find [ File - \blogs\hstrv\comment_post.php ; Line - 262 ]
$Comment->send_email_notifications();
Replace with;
//$Comment->send_email_notifications();
Only recieve comment notifications for your blog;
[Blog Version 1.8]
Find [ File - \blogs\hstrv\comment_post.php ; Line - 262 ]
$Comment->send_email_notifications();
Replace with;
if($Comment->Item->blog_ID == /*The blogID of your blog*/)
$Comment->send_email_notifications();
Permantly remove notifications;
[Blog Version 1.8]
Find [ File - \blogs\inc\MODEL\comments\_comment.class.php ; Line - 891 ]
Find [ File - \blogs\inc\MODEL\items\_item.class.php ; Line - 2379 ]
function send_email_notifications()
{
Replace with;
function send_email_notifications()
{ return false;
Edit:
@whoo; I don't see you giving any 'GOOD ADVICE'.
Although you still had time to use your reputation mod that you love soo much.
5 yabba May 14, 2006 01:04
Well it would still work.
Lol, I agree, but I'd still send the email ;)
¥
In your _config.php file just make $admin_email equal a bad email address like 'do.not@email.me'....
I'll post this in the feature requests section;
http://forums.b2evolution.net/viewtopic.php?p=36603#36603