diff options
| author | Rico Sonntag <mail@ricosonntag.de> | 2018-03-26 12:14:52 +0200 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2018-03-26 11:14:52 +0100 |
| commit | d2bccbf6c03d1b68b7e1491a8c730098c4941c92 (patch) | |
| tree | ba31e99ef3023331bb201fd0f98a7431b65d656d /app/Stats.php | |
| parent | ab52bdb2c6530d5c37760fd9c364117de98aca24 (diff) | |
| download | webtrees-d2bccbf6c03d1b68b7e1491a8c730098c4941c92.tar.gz webtrees-d2bccbf6c03d1b68b7e1491a8c730098c4941c92.tar.bz2 webtrees-d2bccbf6c03d1b68b7e1491a8c730098c4941c92.zip | |
Center count of individuals in top givenname table module (#1645)
Diffstat (limited to 'app/Stats.php')
| -rw-r--r-- | app/Stats.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Stats.php b/app/Stats.php index aa4ef425d9..c51dc02562 100644 --- a/app/Stats.php +++ b/app/Stats.php @@ -5526,7 +5526,7 @@ class Stats { } switch ($type) { case 'table': - $common[] = '<tr><td>' . $given . '</td><td data-sort="' . $total . '">' . I18N::number($total) . '</td></tr>'; + $common[] = '<tr><td>' . $given . '</td><td class="text-center" data-sort="' . $total . '">' . I18N::number($total) . '</td></tr>'; break; case 'list': $common[] = '<li><span dir="auto">' . $given . '</span>' . $tot . '</li>'; |
