Skip to content
This repository was archived by the owner on Jan 31, 2020. It is now read-only.

Commit 8d88806

Browse files
committed
Merge branch 'hotfix/170-extras-for-compact-op' into develop
Forward port #170
2 parents d8dee09 + f648a2a commit 8d88806

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ All notable changes to this project will be documented in this file, in reverse
4444

4545
### Fixed
4646

47+
- [#170](https://github.com/zendframework/zend-view/pull/170) ensures that variables referenced in `compact()` operations are properly
48+
initialized, fixing an error that occures in PHP 7.3.
49+
4750
- [#169](https://github.com/zendframework/zend-view/pull/169) adds zendframework/zend-json as a required dependency, as it is referenced
4851
in multiple locations within the package.
4952

src/Helper/HeadLink.php

+4
Original file line numberDiff line numberDiff line change
@@ -408,6 +408,8 @@ public function createDataStylesheet(array $args)
408408
if ($args && is_array($args[0])) {
409409
$extras = array_shift($args);
410410
$extras = (array) $extras;
411+
} else {
412+
$extras = array();
411413
}
412414

413415
$attributes = compact('rel', 'type', 'href', 'media', 'conditionalStylesheet', 'extras');
@@ -460,6 +462,8 @@ public function createDataAlternate(array $args)
460462
if (isset($extras['media']) && is_array($extras['media'])) {
461463
$extras['media'] = implode(',', $extras['media']);
462464
}
465+
} else {
466+
$extras = array();
463467
}
464468

465469
$href = (string) $href;

0 commit comments

Comments
 (0)