diff options
Diffstat (limited to 'app/Report/ReportPdfLine.php')
| -rw-r--r-- | app/Report/ReportPdfLine.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/Report/ReportPdfLine.php b/app/Report/ReportPdfLine.php index b40839c5be..5c13641b53 100644 --- a/app/Report/ReportPdfLine.php +++ b/app/Report/ReportPdfLine.php @@ -25,16 +25,16 @@ class ReportPdfLine extends ReportBaseLine { * @param ReportTcpdf $renderer */ public function render($renderer) { - if ($this->x1 == ".") { + if ($this->x1 == '.') { $this->x1 = $renderer->GetX(); } - if ($this->y1 == ".") { + if ($this->y1 == '.') { $this->y1 = $renderer->GetY(); } - if ($this->x2 == ".") { + if ($this->x2 == '.') { $this->x2 = $renderer->getMaxLineWidth(); } - if ($this->y2 == ".") { + if ($this->y2 == '.') { $this->y2 = $renderer->GetY(); } if ($renderer->getRTL()) { |
