diff options
| author | Nigel Osborne <kiwi3685@me.com> | 2013-06-20 22:36:56 +0000 |
|---|---|---|
| committer | Nigel Osborne <kiwi3685@me.com> | 2013-06-20 22:36:56 +0000 |
| commit | 10f89b11183c974713dc48a21d00be932c05ed0d (patch) | |
| tree | 5aa0b4ac76cf6d72dce40846a88031582534dd21 /library | |
| parent | 7c96b0dd318cabf1da7e44cd9841b60d58792d55 (diff) | |
| download | webtrees-10f89b11183c974713dc48a21d00be932c05ed0d.tar.gz webtrees-10f89b11183c974713dc48a21d00be932c05ed0d.tar.bz2 webtrees-10f89b11183c974713dc48a21d00be932c05ed0d.zip | |
Bug #1192732 - Inconsistent markup in charts headers - family book chart
Diffstat (limited to 'library')
| -rw-r--r-- | library/WT/Controller/Familybook.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/library/WT/Controller/Familybook.php b/library/WT/Controller/Familybook.php index 0ba2b0efb0..e75a46b6a6 100644 --- a/library/WT/Controller/Familybook.php +++ b/library/WT/Controller/Familybook.php @@ -367,9 +367,10 @@ class WT_Controller_Familybook extends WT_Controller_Chart { if (count($families)>0 || empty($firstrun)) { $firstrun=true; echo - '<h2>', - /* I18N: A title/heading. %s is an individual’s name */ WT_I18N::translate('Family of %s', $person->getFullName()), - '</h2><table class="t0"><tr><td class="tdmid">'; + '<h3>', + /* I18N: A title/heading. %s is an individual’s name */ WT_I18N::translate('Family of %s', $person->getFullName()), + '</h3> + <table class="t0"><tr><td class="tdmid">'; $this->dgenerations = $this->generations; $this->print_descendency($person, 1); echo '</td><td class="tdmid">'; |
