We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d77b46c commit 01d9153Copy full SHA for 01d9153
plugins/speculation-rules/helper.php
@@ -68,10 +68,12 @@ function plsr_get_speculation_rules() {
68
// 3. The array has sequential keys (i.e. array_is_list()).
69
$href_exclude_paths = array_values(
70
array_unique(
71
- array_map(
72
- array( $prefixer, 'prefix_path_pattern' ),
73
- array_merge(
74
- $base_href_exclude_paths,
+ array_merge(
+ $base_href_exclude_paths,
+ array_map(
+ static function ( string $href_exclude_path ) use ( $prefixer ): string {
75
+ return $prefixer->prefix_path_pattern( $href_exclude_path );
76
+ },
77
$href_exclude_paths
78
)
79
0 commit comments