diff options
| author | makitso <makitso@gmail.com> | 2015-03-02 18:14:06 -0600 |
|---|---|---|
| committer | makitso <makitso@gmail.com> | 2015-03-02 18:14:06 -0600 |
| commit | 0fd21fda61c8bff026db9b2a6093f2ec7967d7a8 (patch) | |
| tree | 80caeb93526ba7f5c40beabb84e67bc62b8335c3 /app/Module/FamilyTreeStatisticsModule.php | |
| parent | 6bf445790678085ab714acbcb98d992aac06852b (diff) | |
| download | webtrees-0fd21fda61c8bff026db9b2a6093f2ec7967d7a8.tar.gz webtrees-0fd21fda61c8bff026db9b2a6093f2ec7967d7a8.tar.bz2 webtrees-0fd21fda61c8bff026db9b2a6093f2ec7967d7a8.zip | |
Fix #453 - View statistics as graphs / Most common surnames Display Issue with Shorter Right Column
Diffstat (limited to 'app/Module/FamilyTreeStatisticsModule.php')
| -rw-r--r-- | app/Module/FamilyTreeStatisticsModule.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/app/Module/FamilyTreeStatisticsModule.php b/app/Module/FamilyTreeStatisticsModule.php index b39c06d7b5..138b761956 100644 --- a/app/Module/FamilyTreeStatisticsModule.php +++ b/app/Module/FamilyTreeStatisticsModule.php @@ -175,10 +175,10 @@ class FamilyTreeStatisticsModule extends Module implements ModuleBlockInterface if (!$block) { $content .= '<div class="facts_value stat-cell left"></div>'; } - $content .= '</div></div>'; + $content .= '</div>'; } if ($stat_link) { - $content .= '<div class="clearfloat"><a href="statistics.php?ged=' . WT_GEDURL . '"><b>' . I18N::translate('View statistics as graphs') . '</b></a></div>'; + $content .= '</div><div class="clearfloat"><a href="statistics.php?ged=' . WT_GEDURL . '"><b>' . I18N::translate('View statistics as graphs') . '</b></a></div>'; } // NOTE: Print the most common surnames if ($show_common_surnames) { @@ -196,7 +196,6 @@ class FamilyTreeStatisticsModule extends Module implements ModuleBlockInterface $i++; } } - $content .= '</div>'; } } |
