Skip to content

Commit 01d9153

Browse files
committed
Prevent re-prefixing base exclude hrefs
1 parent d77b46c commit 01d9153

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

plugins/speculation-rules/helper.php

+6-4
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,12 @@ function plsr_get_speculation_rules() {
6868
// 3. The array has sequential keys (i.e. array_is_list()).
6969
$href_exclude_paths = array_values(
7070
array_unique(
71-
array_map(
72-
array( $prefixer, 'prefix_path_pattern' ),
73-
array_merge(
74-
$base_href_exclude_paths,
71+
array_merge(
72+
$base_href_exclude_paths,
73+
array_map(
74+
static function ( string $href_exclude_path ) use ( $prefixer ): string {
75+
return $prefixer->prefix_path_pattern( $href_exclude_path );
76+
},
7577
$href_exclude_paths
7678
)
7779
)

0 commit comments

Comments
 (0)