diff options
| author | Greg Roach <fisharebest@webtrees.net> | 2019-11-22 23:05:58 +0000 |
|---|---|---|
| committer | Greg Roach <fisharebest@webtrees.net> | 2019-11-23 10:58:38 +0000 |
| commit | 075d1a0567e21f051a28e4811b3293a28f1ed13f (patch) | |
| tree | 637e5bb5dfd41c33e6529da37657479c1ec31d3e /resources/views/modules/gedcom_stats | |
| parent | d5ad3db07e8881039a1b485e037789531d265b51 (diff) | |
| download | webtrees-075d1a0567e21f051a28e4811b3293a28f1ed13f.tar.gz webtrees-075d1a0567e21f051a28e4811b3293a28f1ed13f.tar.bz2 webtrees-075d1a0567e21f051a28e4811b3293a28f1ed13f.zip | |
Avoid ambiguous functions such as empty()
Diffstat (limited to 'resources/views/modules/gedcom_stats')
| -rw-r--r-- | resources/views/modules/gedcom_stats/statistics.phtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/views/modules/gedcom_stats/statistics.phtml b/resources/views/modules/gedcom_stats/statistics.phtml index 6277320039..15d2a69574 100644 --- a/resources/views/modules/gedcom_stats/statistics.phtml +++ b/resources/views/modules/gedcom_stats/statistics.phtml @@ -232,7 +232,7 @@ </div> </div> -<?php if (!empty($surnames)) : ?> +<?php if ($surnames !== '') : ?> <div class="clearfix"> <p> <strong> |
