summaryrefslogtreecommitdiff
path: root/app/Controller/TimelineController.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Controller/TimelineController.php')
-rw-r--r--app/Controller/TimelineController.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Controller/TimelineController.php b/app/Controller/TimelineController.php
index 102ed85cee..cc4c8db7d4 100644
--- a/app/Controller/TimelineController.php
+++ b/app/Controller/TimelineController.php
@@ -185,7 +185,7 @@ class TimelineController extends PageController {
echo "<div id=\"fact$factcount\" style=\"position:absolute; " . (I18N::direction() === 'ltr' ? 'left: ' . ($xoffset) : 'right: ' . ($xoffset)) . 'px; top:' . ($yoffset) . "px; font-size: 8pt; height: " . ($this->bheight) . "px;\" onmousedown=\"factMouseDown(this, '" . $factcount . "', " . ($yoffset - $tyoffset) . ");\">";
echo '<table cellspacing="0" cellpadding="0" border="0" style="cursor: hand;"><tr><td>';
- echo '<img src="' . Theme::theme()->parameter('image-hline') . '" name="boxline' . $factcount . '" id="boxline' . $factcount . '" height="3" align="left" width="10" alt="" style="padding-';
+ echo '<img src="' . Theme::theme()->parameter('image-hline') . '" name="boxline' . $factcount . '" id="boxline' . $factcount . '" height="3" width="10" alt="" style="padding-';
if (I18N::direction() === 'ltr') {
echo 'left: 3px;">';
} else {
@@ -202,7 +202,7 @@ class TimelineController extends PageController {
$col = array_search($event->getParent()->getWife(), $this->people);
}
$col = $col % 6;
- echo '</td><td valign="top" class="person' . $col . '">';
+ echo '</td><td class="person' . $col . '">';
if (count($this->people) > 6) {
// We only have six colours, so show naes if more than this number
echo $event->getParent()->getFullName() . ' — ';