diff options
| author | Scrutinizer Auto-Fixer <auto-fixer@scrutinizer-ci.com> | 2015-01-18 16:17:12 +0000 |
|---|---|---|
| committer | Scrutinizer Auto-Fixer <auto-fixer@scrutinizer-ci.com> | 2015-01-18 16:17:12 +0000 |
| commit | 7df8fead64fbf77c6da5caa8dacf06e4822deb05 (patch) | |
| tree | 672c3b9f5ee630a8da9767962004b902d6a8b58b /modules_v3/individuals/module.php | |
| parent | 633b03a93a5f9650c5bd37d11d2e27e4a56d4130 (diff) | |
| download | webtrees-7df8fead64fbf77c6da5caa8dacf06e4822deb05.tar.gz webtrees-7df8fead64fbf77c6da5caa8dacf06e4822deb05.tar.bz2 webtrees-7df8fead64fbf77c6da5caa8dacf06e4822deb05.zip | |
Scrutinizer Auto-Fixes
This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com
Diffstat (limited to 'modules_v3/individuals/module.php')
| -rw-r--r-- | modules_v3/individuals/module.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules_v3/individuals/module.php b/modules_v3/individuals/module.php index f1beb30e1c..c6b34aedb2 100644 --- a/modules_v3/individuals/module.php +++ b/modules_v3/individuals/module.php @@ -240,7 +240,9 @@ class individuals_WT_Module extends WT_Module implements WT_Module_Sidebar { $out .= '<li><a href="'.$person->getHtmlUrl().'">'.$person->getSexImage().' '.$person->getFullName().' '; if ($person->canShow()) { $bd = $person->getLifeSpan(); - if (!empty($bd)) $out .= ' ('.$bd.')'; + if (!empty($bd)) { + $out .= ' ('.$bd.')'; + } } $out .= '</a></li>'; } |
