summaryrefslogtreecommitdiff
path: root/app/Module/FamilyTreeStatisticsModule.php
diff options
context:
space:
mode:
authormakitso <makitso@gmail.com>2015-03-02 18:14:06 -0600
committermakitso <makitso@gmail.com>2015-03-02 18:14:06 -0600
commit0fd21fda61c8bff026db9b2a6093f2ec7967d7a8 (patch)
tree80caeb93526ba7f5c40beabb84e67bc62b8335c3 /app/Module/FamilyTreeStatisticsModule.php
parent6bf445790678085ab714acbcb98d992aac06852b (diff)
downloadwebtrees-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.php5
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>';
}
}