Make WordPress Core

Changeset 283


Ignore:
Timestamp:
08/02/2003 12:21:19 AM (23 years ago)
Author:
saxmatt
Message:

Shouldn't send emails if there is no email for that author.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/b2comments.post.php

    r250 r283  
    8989    $wpdb->query("INSERT INTO $tablecomments VALUES ('0','$comment_post_ID','$author','$email','$url','$user_ip','$now','$comment','0')");
    9090
    91     if ($comments_notify) {
     91    if ($comments_notify && '' != $comment_author_email) {
    9292
    9393        $notify_message  = "New comment on your post #$comment_post_ID ".stripslashes($postdata['Title'])."\r\n\r\n";
Note: See TracChangeset for help on using the changeset viewer.