diff options
| author | Greg Roach <fisharebest@webtrees.net> | 2018-10-06 19:17:01 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@webtrees.net> | 2018-10-06 21:08:30 +0100 |
| commit | 8a4ee39c672840ee75fccd3fa23578043bf2590c (patch) | |
| tree | ecac1d4efd4d762c398aed196c488923b4c6927f /app/Report/ReportHtmlCell.php | |
| parent | e33d66762436a8bb1ed10d6d6d0f23bb8f2f0fe3 (diff) | |
| download | webtrees-8a4ee39c672840ee75fccd3fa23578043bf2590c.tar.gz webtrees-8a4ee39c672840ee75fccd3fa23578043bf2590c.tar.bz2 webtrees-8a4ee39c672840ee75fccd3fa23578043bf2590c.zip | |
PHPdoc
Diffstat (limited to 'app/Report/ReportHtmlCell.php')
| -rw-r--r-- | app/Report/ReportHtmlCell.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Report/ReportHtmlCell.php b/app/Report/ReportHtmlCell.php index 6b5ceb4c08..29080167c1 100644 --- a/app/Report/ReportHtmlCell.php +++ b/app/Report/ReportHtmlCell.php @@ -34,7 +34,7 @@ class ReportHtmlCell extends ReportBaseCell if (strpos($this->text, '{{:ptp:}}') !== false) { return; } - $temptext = str_replace('#PAGENUM#', $renderer->pageNo(), $this->text); + $temptext = str_replace('#PAGENUM#', (string) $renderer->pageNo(), $this->text); // underline «title» part of Source item $temptext = str_replace([ '«', |
