Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
bugfix regarding not initialized array
  • Loading branch information
heikoS2C committed Mar 7, 2023
1 parent 14d45fd commit 38ae2d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion syntax/syntax.php
Expand Up @@ -111,7 +111,7 @@ public function render($mode, Doku_Renderer $renderer, $data) {
else
$renderer->meta["htmlmetatags"][$name] .= $content;
}
else
else if(isset($renderer->meta['htmlmetatags']))
$renderer->meta["htmlmetatags"][$name] .= $content;
}
}
Expand Down

0 comments on commit 38ae2d7

Please sign in to comment.