diff options
| author | Rob Peters <makitso@gmail.com> | 2011-11-24 00:16:45 +0000 |
|---|---|---|
| committer | Rob Peters <makitso@gmail.com> | 2011-11-24 00:16:45 +0000 |
| commit | bfc146280870fde4906f007ae1a2b93f67213741 (patch) | |
| tree | d14f97bb6a7c02e0a1ce54197eb08bb72f98b586 | |
| parent | 3bf18aebd8ef51884ad9391d4523b2a983a9adb1 (diff) | |
| download | webtrees-bfc146280870fde4906f007ae1a2b93f67213741.tar.gz webtrees-bfc146280870fde4906f007ae1a2b93f67213741.tar.bz2 webtrees-bfc146280870fde4906f007ae1a2b93f67213741.zip | |
Bug 892898, fix RTL for hourglass chart
| -rw-r--r-- | library/WT/Controller/Hourglass.php | 2 |
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>"; |
