diff options
| author | Greg Roach <fisharebest@gmail.com> | 2016-02-21 14:40:38 +0000 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2016-02-21 14:42:56 +0000 |
| commit | 7820e4d74ec8019f98540781a666f513527a4003 (patch) | |
| tree | 61229457c5199c1cd17bd54b261dcd688fd89c16 /app/Report/ReportPdf.php | |
| parent | 5e8c88c1a3a92b844fbb30356bfc49224fdf7d68 (diff) | |
| download | webtrees-7820e4d74ec8019f98540781a666f513527a4003.tar.gz webtrees-7820e4d74ec8019f98540781a666f513527a4003.tar.bz2 webtrees-7820e4d74ec8019f98540781a666f513527a4003.zip | |
Case mismatch
Diffstat (limited to 'app/Report/ReportPdf.php')
| -rw-r--r-- | app/Report/ReportPdf.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/Report/ReportPdf.php b/app/Report/ReportPdf.php index 15ec7c6079..db0ff4e6b1 100644 --- a/app/Report/ReportPdf.php +++ b/app/Report/ReportPdf.php @@ -67,9 +67,9 @@ class ReportPdf extends ReportBase { ), self::UNICODE, "UTF-8", self::DISK_CACHE); // Setup the PDF margins - $this->pdf->setMargins($this->leftmargin, $this->topmargin, $this->rightmargin); - $this->pdf->SetHeaderMargin($this->headermargin); - $this->pdf->SetFooterMargin($this->footermargin); + $this->pdf->SetMargins($this->leftmargin, $this->topmargin, $this->rightmargin); + $this->pdf->setHeaderMargin($this->headermargin); + $this->pdf->setFooterMargin($this->footermargin); //Set auto page breaks $this->pdf->SetAutoPageBreak(true, $this->bottommargin); // Set font subsetting |
