Skip to content

Commit 72ff4e3

Browse files
Merge branch '13.1' into 14.1
2 parents 755234f + 11ec1ef commit 72ff4e3

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ CHANGE LOG
22
==========
33

44

5+
## V14.1.1 (UPCOMING)
6+
7+
* Fixed PHP 8.0 issue
8+
9+
510
## V14.1 (14/08/2020)
611

712
* Support only Laravel 7 or 8

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2014-2020 Graham Campbell <[email protected]>
3+
Copyright (c) 2014-2021 Graham Campbell <[email protected]>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

src/Displayer/HtmlDisplayer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ private function render(array $info)
9494
$info['favicon_url'] = $generator('favicon.ico');
9595

9696
foreach ($info as $key => $val) {
97-
$content = str_replace("{{ $$key }}", $val, $content);
97+
$content = str_replace("{{ $$key }}", (string) $val, (string) $content);
9898
}
9999

100100
return $content;

0 commit comments

Comments
 (0)