diff options
| author | Greg Roach <fisharebest@gmail.com> | 2013-08-25 12:03:19 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2013-08-25 12:05:29 +0100 |
| commit | bfe78f1f609f81036f87644936b3837991b5f57f (patch) | |
| tree | d17598b748cbe0c05038a0b85ed377513680ee08 /library/WT/Stats.php | |
| parent | 169b2a4a5b20481e32e9239eceacab525192638c (diff) | |
| download | webtrees-bfe78f1f609f81036f87644936b3837991b5f57f.tar.gz webtrees-bfe78f1f609f81036f87644936b3837991b5f57f.tar.bz2 webtrees-bfe78f1f609f81036f87644936b3837991b5f57f.zip | |
Fix: negative number of children shown in chart 'Fix: negative number of children shown in chart'
Diffstat (limited to 'library/WT/Stats.php')
| -rw-r--r-- | library/WT/Stats.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/WT/Stats.php b/library/WT/Stats.php index aa1516f388..703c3cb317 100644 --- a/library/WT/Stats.php +++ b/library/WT/Stats.php @@ -2923,7 +2923,7 @@ class WT_Stats { " FROM `##families`". " WHERE f_numchil = 0 AND f_file = {$this->_ged_id}"); $row=$rows[0]; - return WT_I18N::number($row['tot']); + return $row['tot']; } function noChildrenFamilies() { |
