Skip to content

Commit 921c2d3

Browse files
committed
Fix PHP 7.2/7.3 error when calling get_prepared_links and there are no links
1 parent d7ac348 commit 921c2d3

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

plugins/optimization-detective/class-od-link-collection.php

+7-1
Original file line numberDiff line numberDiff line change
@@ -114,12 +114,18 @@ public function add_link( array $attributes, ?int $minimum_viewport_width = null
114114
* @return LinkAttributes[] Prepared links with adjacent-duplicates merged together and media attributes added.
115115
*/
116116
private function get_prepared_links(): array {
117+
$links_by_rel = array_values( $this->links_by_rel );
118+
if ( count( $links_by_rel ) === 0 ) {
119+
// This condition is needed for PHP 7.2 and PHP 7.3 in which array_merge() fails if passed a spread empty array: 'array_merge() expects at least 1 parameter, 0 given'.
120+
return array();
121+
}
122+
117123
return array_merge(
118124
...array_map(
119125
function ( array $links ): array {
120126
return $this->merge_consecutive_links( $links );
121127
},
122-
array_values( $this->links_by_rel )
128+
$links_by_rel
123129
)
124130
);
125131
}

0 commit comments

Comments
 (0)