Skip to content

Commit

Permalink
Update class-comment-mention.php
Browse files Browse the repository at this point in the history
  • Loading branch information
Hackkzy authored Jan 18, 2024
1 parent a8c49ed commit 2d98a3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/main/class-comment-mention.php
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ public function cmt_mntn_preprocess_comment( $comment_ID, $comment_status, $comm
$usernames = $this->cmt_mntn_find_mentions( $content );

// Bail if $usernames empty.
if ( empty( $usernames ) || is_array( $usernames ) ) {
if ( empty( $usernames ) || ! is_array( $usernames ) ) {
return;
}

Expand Down

0 comments on commit 2d98a3e

Please sign in to comment.