summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorNigel Osborne <kiwi3685@me.com>2011-11-09 04:12:18 +0000
committerNigel Osborne <kiwi3685@me.com>2011-11-09 04:12:18 +0000
commit8a4e6a7df002e0ac43ca11e3f793196249238a20 (patch)
tree787efb45c24bd201d45d74f8abd2fdeff1888b71 /includes
parent7ce8ff3a15adccf19417bbac2b029175c457f5e7 (diff)
downloadwebtrees-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.php9
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 .= '&nbsp;';
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>';
}
}
}