File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -421,7 +421,7 @@ function populate_options( array $options = array() ) {
421421 'use_smilies ' => 1 ,
422422 'require_name_email ' => 1 ,
423423 'comments_notify ' => 1 ,
424- 'notes_notify ' => 1 ,
424+ 'wp_notes_notify ' => 1 ,
425425 'posts_per_rss ' => 10 ,
426426 'rss_use_excerpt ' => 0 ,
427427 'mailserver_url ' => 'mail.example.com ' ,
Original file line number Diff line number Diff line change 161161<input name="moderation_notify" type="checkbox" id="moderation_notify" value="1" <?php checked ( '1 ' , get_option ( 'moderation_notify ' ) ); ?> />
162162<?php _e ( 'A comment is held for moderation ' ); ?> </label>
163163<br />
164- <label for="notes_notify ">
165- <input name="notes_notify " type="checkbox" id="notes_notify " value="1" <?php checked ( '1 ' , get_option ( 'notes_notify ' ) ); ?> />
164+ <label for="wp_notes_notify ">
165+ <input name="wp_notes_notify " type="checkbox" id="wp_notes_notify " value="1" <?php checked ( '1 ' , get_option ( 'wp_notes_notify ' ) ); ?> />
166166<?php _e ( 'Anyone posts a note ' ); ?> </label>
167167
168168</fieldset></td>
Original file line number Diff line number Diff line change 125125 'comment_order ' ,
126126 'comment_registration ' ,
127127 'show_comments_cookies_opt_in ' ,
128- 'notes_notify ' ,
128+ 'wp_notes_notify ' ,
129129 ),
130130 'media ' => array (
131131 'thumbnail_size_w ' ,
Original file line number Diff line number Diff line change @@ -2427,7 +2427,7 @@ function wp_new_comment_notify_postauthor( $comment_id ) {
24272427 $ comment = get_comment ( $ comment_id );
24282428 $ is_note = ( $ comment && 'note ' === $ comment ->comment_type );
24292429
2430- $ maybe_notify = $ is_note ? get_option ( 'notes_notify ' ) : get_option ( 'comments_notify ' );
2430+ $ maybe_notify = $ is_note ? get_option ( 'wp_notes_notify ' ) : get_option ( 'comments_notify ' );
24312431
24322432 /**
24332433 * Filters whether to send the post author new comment notification emails,
You can’t perform that action at this time.
0 commit comments