diff --git a/includes/Checker/Abstract_Check_Runner.php b/includes/Checker/Abstract_Check_Runner.php index 2d42f6836..fff6f4c6d 100644 --- a/includes/Checker/Abstract_Check_Runner.php +++ b/includes/Checker/Abstract_Check_Runner.php @@ -423,7 +423,7 @@ final public function get_checks_to_run() { $check_flags = Check_Repository::TYPE_STATIC; // Check if conditions are met in order to perform Runtime Checks. - if ( ( $this->initialized_early || $this->runtime_environment->can_set_up() ) && is_plugin_active( $this->get_plugin_basename() ) ) { + if ( ( $this->initialized_early && $this->runtime_environment->can_set_up() ) && is_plugin_active( $this->get_plugin_basename() ) ) { $check_flags = Check_Repository::TYPE_ALL; }