remove useless parenthesis around DOING_AUTOSAVE check

This commit is contained in:
Stefan Kalscheuer 2023-08-14 18:45:43 +02:00
parent 268e3933c8
commit 93b4dd744d
Signed by: stefan
GPG Key ID: 3887EC2A53B55430

View File

@ -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;
}