Make WordPress Core

Changeset 4885


Ignore:
Timestamp:
02/15/2007 05:51:59 AM (18 years ago)
Author:
markjaquith
Message:

Consistently use "Spam it:" and "Delete it:" in e-mails. fixes #3304

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/pluggable.php

    r4859 r4885  
    371371    }
    372372    $notify_message .= get_permalink($comment->comment_post_ID) . "#comments\r\n\r\n";
    373     $notify_message .= sprintf( __('To delete this comment, visit: %s'), get_option('siteurl')."/wp-admin/comment.php?action=cdc&c=$comment_id" ) . "\r\n";
    374     $notify_message .= sprintf( __('To mark this comment as spam, visit: %s'), get_option('siteurl')."/wp-admin/comment.php?action=cdc&dt=spam&c=$comment_id" ) . "\r\n";
     373    $notify_message .= sprintf( __('Delete it: %s'), get_option('siteurl')."/wp-admin/comment.php?action=cdc&c=$comment_id" ) . "\r\n";
     374    $notify_message .= sprintf( __('Spam it: %s'), get_option('siteurl')."/wp-admin/comment.php?action=cdc&dt=spam&c=$comment_id" ) . "\r\n";
    375375
    376376    $wp_email = 'wordpress@' . preg_replace('#^www\.#', '', strtolower($_SERVER['SERVER_NAME']));
Note: See TracChangeset for help on using the changeset viewer.