Skip to content

Commit

Permalink
Remove an unnessary wp_normalize_path() in Abstract_File_Check::get_f…
Browse files Browse the repository at this point in the history
…iles().

This probably should have been removed in #592, but was forgotten.
  • Loading branch information
pbiron committed Oct 3, 2024
1 parent 14a8dda commit a179db5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/Checker/Checks/Abstract_File_Check.php
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ private static function get_files( Check_Context $plugin ) {
}

if ( $include_file ) {
self::$file_list_cache[ $location ][] = wp_normalize_path( $file_path );
self::$file_list_cache[ $location ][] = $file_path;
}
}
}
Expand Down

0 comments on commit a179db5

Please sign in to comment.