We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3910427 commit ae60b9aCopy full SHA for ae60b9a
phpdotnet/phd/Package/PHP/Web.php
@@ -204,7 +204,8 @@ public function header($id) {
204
"alternatives" => $this->cchunk["alternatives"],
205
"source" => $this->sourceInfo($id),
206
);
207
- $setup["history"] = $this->history[$setup["source"]["path"]] ?? [];
+ $history = $this->history ?? [];
208
+ $setup["history"] = $history[$setup["source"]["path"]] ?? [];
209
if ($this->getChildren($id)) {
210
$lang = $this->config->language;
211
$setup["extra_header_links"] = array(
0 commit comments