Changeset 11489 for trunk/wp-includes/pluggable.php
- Timestamp:
- 05/29/2009 08:00:06 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/pluggable.php
r11450 r11489 1079 1079 $subject = sprintf( __('[%1$s] Please moderate: "%2$s"'), get_option('blogname'), $post->post_title ); 1080 1080 $admin_email = get_option('admin_email'); 1081 $message_headers = ''; 1081 1082 1082 1083 $notify_message = apply_filters('comment_moderation_text', $notify_message, $comment_id); 1083 1084 $subject = apply_filters('comment_moderation_subject', $subject, $comment_id); 1084 1085 @wp_mail($admin_email, $subject, $notify_message); 1085 $message_headers = apply_filters('comment_moderation_headers', $message_headers); 1086 1087 @wp_mail($admin_email, $subject, $notify_message, $message_headers); 1086 1088 1087 1089 return true;
Note: See TracChangeset
for help on using the changeset viewer.