diff options
| author | fisharebest <fisharebest@gmail.com> | 2013-07-24 21:02:05 +0000 |
|---|---|---|
| committer | fisharebest <fisharebest@gmail.com> | 2013-07-24 21:02:05 +0000 |
| commit | bb139740ccb4d30981d575f849e2991ff0e8de9a (patch) | |
| tree | 49235b273ca3b59448df804b15c8b42421614fba | |
| parent | d21d83b91644caf330fc429f8a9a812063085509 (diff) | |
| download | webtrees-bb139740ccb4d30981d575f849e2991ff0e8de9a.tar.gz webtrees-bb139740ccb4d30981d575f849e2991ff0e8de9a.tar.bz2 webtrees-bb139740ccb4d30981d575f849e2991ff0e8de9a.zip | |
Missing separator in MARR-DIV label in charts
| -rw-r--r-- | includes/functions/functions_charts.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/functions/functions_charts.php b/includes/functions/functions_charts.php index 9e8b3216b6..e7582daae3 100644 --- a/includes/functions/functions_charts.php +++ b/includes/functions/functions_charts.php @@ -336,7 +336,7 @@ function print_family_children(WT_Family $family, $childid = "", $sosa = 0, $lab echo $marr->getDate()->minDate()->Format('%Y'); // divorce date if ($div && $div->canShow()) { - echo $div->getDate()->minDate()->Format('%Y'); + echo '–', $div->getDate()->minDate()->Format('%Y'); } } echo "<br><img width=\"100%\" class=\"line5\" height=\"3\" src=\"".$WT_IMAGES["hline"]."\" alt=\"\">"; |
