diff options
| author | Nigel Osborne <kiwi3685@me.com> | 2011-11-09 04:12:18 +0000 |
|---|---|---|
| committer | Nigel Osborne <kiwi3685@me.com> | 2011-11-09 04:12:18 +0000 |
| commit | 8a4e6a7df002e0ac43ca11e3f793196249238a20 (patch) | |
| tree | 787efb45c24bd201d45d74f8abd2fdeff1888b71 /includes | |
| parent | 7ce8ff3a15adccf19417bbac2b029175c457f5e7 (diff) | |
| download | webtrees-8a4e6a7df002e0ac43ca11e3f793196249238a20.tar.gz webtrees-8a4e6a7df002e0ac43ca11e3f793196249238a20.tar.bz2 webtrees-8a4e6a7df002e0ac43ca11e3f793196249238a20.zip | |
Correction to 12642
Diffstat (limited to 'includes')
| -rw-r--r-- | includes/functions/functions_print_lists.php | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/includes/functions/functions_print_lists.php b/includes/functions/functions_print_lists.php index e62e63cfef..3169a75f9c 100644 --- a/includes/functions/functions_print_lists.php +++ b/includes/functions/functions_print_lists.php @@ -1524,7 +1524,7 @@ function print_changes_table($change_ids, $sort, $show_parents=false) { "bJQueryUI": true, "aaSorting": ['.$aaSorting.'], "aoColumns": [ - /* 0-Sex */ { "bSortable" : false, "sClass": "center" }, + /* 0-Type */ { "bSortable" : false, "sClass": "center" }, /* 1-Record */ { "iDataSort" : 5 }, /* 2-Change */ { "iDataSort" : 4 }, /* 3=By */ null, @@ -1575,6 +1575,7 @@ function print_changes_table($change_ids, $sort, $show_parents=false) { $return .= '<img src="' . $WT_IMAGES['repository'] . '" title="" alt="" height="12" />'; break; default: + $return .= ' '; break; } $return .= "</td>"; @@ -1582,17 +1583,17 @@ function print_changes_table($change_ids, $sort, $show_parents=false) { //-- Record name(s) $name = $record->getFullName(); $return .= '<td class="wrap">'; - $return .= '<a href="'. $record->getHtmlUrl() . $name . '</a>'; + $return .= '<a href="'. $record->getHtmlUrl() .'">'. $name . '</a>'; if ($indi) { $return .= '<div class="indent">'; $addname = $record->getAddName(); if ($addname) { - $return .= '<a href="'. $record->getHtmlUrl() . $addname . '</a>'; + $return .= '<a href="'. $record->getHtmlUrl() .'">'. $addname . '</a>'; } if ($SHOW_MARRIED_NAMES) { foreach ($record->getAllNames() as $name) { if ($name['type'] == '_MARNM') { - $return .= '<div><a title="'. WT_Gedcom_Tag::getLabel('_MARNM') . '" href="'. $record->getHtmlUrl() . $name['full'] . '</a></div>'; + $return .= '<div><a title="'. WT_Gedcom_Tag::getLabel('_MARNM') . '" href="'. $record->getHtmlUrl() .'">'. $name['full'] . '</a></div>'; } } } |
