Skip to content

Commit

Permalink
[BUGFIX] Ensure tag link viewhelper always returns a string
Browse files Browse the repository at this point in the history
Releases: master, 9.1, 9.0
  • Loading branch information
benjaminkott committed May 5, 2019
1 parent 1e0dcfc commit 6529670
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/ViewHelpers/Link/TagViewHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public function render(): string
$result = $this->renderChildren();
}

return $result;
return (string)$result;
}

/**
Expand Down

0 comments on commit 6529670

Please sign in to comment.