Skip to content

Commit

Permalink
remove useless parenthesis around DOING_AUTOSAVE check
Browse files Browse the repository at this point in the history
  • Loading branch information
stklcode committed Aug 14, 2023
1 parent 268e393 commit 93b4dd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inc/class-statifyblacklist.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ class StatifyBlacklist {
*/
public static function init() {
// Skip on autosave.
if ( ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) ) {
if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
return;
}

Expand Down

0 comments on commit 93b4dd7

Please sign in to comment.