diff options
| author | makitso <makitso@gmail.com> | 2013-10-05 18:51:40 -0500 |
|---|---|---|
| committer | makitso <makitso@gmail.com> | 2013-10-05 18:51:40 -0500 |
| commit | 58fc8f0ea76bef7d511fc98d1b9bb107a2af15d7 (patch) | |
| tree | 4092988dee61600c78292dc1986b47b280eb6bbd /modules_v3 | |
| parent | 9a6c240abf7620d0de49bfc389adb9f9e6cbd9c7 (diff) | |
| download | webtrees-58fc8f0ea76bef7d511fc98d1b9bb107a2af15d7.tar.gz webtrees-58fc8f0ea76bef7d511fc98d1b9bb107a2af15d7.tar.bz2 webtrees-58fc8f0ea76bef7d511fc98d1b9bb107a2af15d7.zip | |
Fix Chrome problem not displaying marriage date. Solution was to swap place and date so that is displays as in 1.4.3
Diffstat (limited to 'modules_v3')
| -rw-r--r-- | modules_v3/relatives/module.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules_v3/relatives/module.php b/modules_v3/relatives/module.php index 6052ca208f..f75ae064b8 100644 --- a/modules_v3/relatives/module.php +++ b/modules_v3/relatives/module.php @@ -147,7 +147,7 @@ class relatives_WT_Module extends WT_Module implements WT_Module_Tab { </td> <td class="facts_value"> - <?php echo WT_Gedcom_Tag::getLabelValue($fact->getTag(), $fact->getPlace()->getFullName() . ' — ' . $fact->getDate()->Display(false)); ?> + <?php echo WT_Gedcom_Tag::getLabelValue($fact->getTag(), $fact->getDate()->Display(false) . ' — ' . $fact->getPlace()->getFullName()); ?> </td> </tr> <?php |
