From 93b4dd744d95af6af3711392c250ee8fd2d717b3 Mon Sep 17 00:00:00 2001 From: Stefan Kalscheuer Date: Mon, 14 Aug 2023 18:45:43 +0200 Subject: [PATCH] remove useless parenthesis around DOING_AUTOSAVE check --- inc/class-statifyblacklist.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/class-statifyblacklist.php b/inc/class-statifyblacklist.php index d3efbc8..a83fb28 100644 --- a/inc/class-statifyblacklist.php +++ b/inc/class-statifyblacklist.php @@ -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; }