We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f6fff0 commit 3b168e3Copy full SHA for 3b168e3
src/wp-includes/comment.php
@@ -2425,7 +2425,7 @@ function wp_new_comment_notify_moderator( $comment_id ) {
2425
*/
2426
function wp_new_comment_notify_postauthor( $comment_id ) {
2427
$comment = get_comment( $comment_id );
2428
- $isNote = ( $comment && 'note' === $comment->comment_type );
+ $is_note = ( $comment && 'note' === $comment->comment_type );
2429
2430
$maybe_notify = $isNote ? get_option( 'notes_notify' ) : get_option( 'comments_notify' );
2431
0 commit comments