summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Peters <makitso@gmail.com>2011-11-24 00:16:45 +0000
committerRob Peters <makitso@gmail.com>2011-11-24 00:16:45 +0000
commitbfc146280870fde4906f007ae1a2b93f67213741 (patch)
treed14f97bb6a7c02e0a1ce54197eb08bb72f98b586
parent3bf18aebd8ef51884ad9391d4523b2a983a9adb1 (diff)
downloadwebtrees-bfc146280870fde4906f007ae1a2b93f67213741.tar.gz
webtrees-bfc146280870fde4906f007ae1a2b93f67213741.tar.bz2
webtrees-bfc146280870fde4906f007ae1a2b93f67213741.zip
Bug 892898, fix RTL for hourglass chart
-rw-r--r--library/WT/Controller/Hourglass.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/WT/Controller/Hourglass.php b/library/WT/Controller/Hourglass.php
index bfc0e1c242..f5ff1a8acd 100644
--- a/library/WT/Controller/Hourglass.php
+++ b/library/WT/Controller/Hourglass.php
@@ -236,7 +236,7 @@ class WT_Controller_Hourglass extends WT_Controller_Chart {
$person2 = $children[$i];
$chil = $person2->getXref();
echo "<tr>";
- echo "<td id=\"td_$chil\" class=\"$TEXT_DIRECTION\" align=\"$tablealign\">";
+ echo "<td id=\"td_$chil\" class=\"$TEXT_DIRECTION\" align=\"$otablealign\">";
$kids = $this->print_descendency($person2, $count+1);
$numkids += $kids;
echo "</td>";