diff options
| author | Greg Roach <fisharebest@gmail.com> | 2016-12-25 21:44:26 +0000 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2016-12-25 21:46:23 +0000 |
| commit | 7a6ee1ac7cd0821562d35b111a96b219b46d7899 (patch) | |
| tree | 99faaab77f0eeff388c72e2d3aa1b70a519d8eb2 /app/Report/ReportBaseElement.php | |
| parent | c1343e2ddc990378c44729b8010d8918b623bffd (diff) | |
| download | webtrees-7a6ee1ac7cd0821562d35b111a96b219b46d7899.tar.gz webtrees-7a6ee1ac7cd0821562d35b111a96b219b46d7899.tar.bz2 webtrees-7a6ee1ac7cd0821562d35b111a96b219b46d7899.zip | |
Code style - single quotes
Diffstat (limited to 'app/Report/ReportBaseElement.php')
| -rw-r--r-- | app/Report/ReportBaseElement.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Report/ReportBaseElement.php b/app/Report/ReportBaseElement.php index 2e18582689..9733107ab1 100644 --- a/app/Report/ReportBaseElement.php +++ b/app/Report/ReportBaseElement.php @@ -62,7 +62,7 @@ class ReportBaseElement { */ public function addText($t) { $t = trim($t, "\r\n\t"); - $t = str_replace(["<br>", " "], ["\n", " "], $t); + $t = str_replace(['<br>', ' '], ["\n", ' '], $t); $t = strip_tags($t); $t = htmlspecialchars_decode($t); $this->text .= $t; |
