Skip to content

Commit

Permalink
Fix no check category issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mukeshpanchal27 committed Dec 19, 2023
1 parent 0101c91 commit 56e5e56
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions includes/Admin/Admin_AJAX.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ public function set_up_environment() {
}

$checks = filter_input( INPUT_POST, 'checks', FILTER_DEFAULT, FILTER_FORCE_ARRAY );
$checks = is_null( $checks ) ? array() : $checks;

Check warning on line 112 in includes/Admin/Admin_AJAX.php

View check run for this annotation

Codecov / codecov/patch

includes/Admin/Admin_AJAX.php#L112

Added line #L112 was not covered by tests
$plugin = filter_input( INPUT_POST, 'plugin', FILTER_SANITIZE_FULL_SPECIAL_CHARS );

try {
Expand Down

0 comments on commit 56e5e56

Please sign in to comment.