summaryrefslogtreecommitdiff
path: root/app/Report/ReportHtmlLine.php
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@gmail.com>2016-12-25 21:44:26 +0000
committerGreg Roach <fisharebest@gmail.com>2016-12-25 21:46:23 +0000
commit7a6ee1ac7cd0821562d35b111a96b219b46d7899 (patch)
tree99faaab77f0eeff388c72e2d3aa1b70a519d8eb2 /app/Report/ReportHtmlLine.php
parentc1343e2ddc990378c44729b8010d8918b623bffd (diff)
downloadwebtrees-7a6ee1ac7cd0821562d35b111a96b219b46d7899.tar.gz
webtrees-7a6ee1ac7cd0821562d35b111a96b219b46d7899.tar.bz2
webtrees-7a6ee1ac7cd0821562d35b111a96b219b46d7899.zip
Code style - single quotes
Diffstat (limited to 'app/Report/ReportHtmlLine.php')
-rw-r--r--app/Report/ReportHtmlLine.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Report/ReportHtmlLine.php b/app/Report/ReportHtmlLine.php
index 446dad3ec6..babd11d2a1 100644
--- a/app/Report/ReportHtmlLine.php
+++ b/app/Report/ReportHtmlLine.php
@@ -39,11 +39,11 @@ class ReportHtmlLine extends ReportBaseLine {
}
// Vertical line
if ($this->x1 == $this->x2) {
- echo "<div style=\"position:absolute;overflow:hidden;border-", $renderer->alignRTL, ":solid black 1pt;", $renderer->alignRTL, ":", $this->x1, "pt;top:", $this->y1 + 1, "pt;width:1pt;height:", $this->y2 - $this->y1, "pt;\"> </div>\n";
+ echo '<div style="position:absolute;overflow:hidden;border-', $renderer->alignRTL, ':solid black 1pt;', $renderer->alignRTL, ':', $this->x1, 'pt;top:', $this->y1 + 1, 'pt;width:1pt;height:', $this->y2 - $this->y1, "pt;\"> </div>\n";
}
// Horizontal line
if ($this->y1 == $this->y2) {
- echo "<div style=\"position:absolute;overflow:hidden;border-top:solid black 1pt;", $renderer->alignRTL, ":", $this->x1, "pt;top:", $this->y1 + 1, "pt;width:", $this->x2 - $this->x1, "pt;height:1pt;\"> </div>\n";
+ echo '<div style="position:absolute;overflow:hidden;border-top:solid black 1pt;', $renderer->alignRTL, ':', $this->x1, 'pt;top:', $this->y1 + 1, 'pt;width:', $this->x2 - $this->x1, "pt;height:1pt;\"> </div>\n";
}
// Keep max Y updated
// One or the other will be higher... lasy mans way...