summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorŁukasz Wilenski <wooc@gazeta.pl>2011-02-24 18:33:41 +0000
committerŁukasz Wilenski <wooc@gazeta.pl>2011-02-24 18:33:41 +0000
commit8d9d1cd59a59431e7082d679587edacc88916992 (patch)
tree3acf18837fd34485c16dca33e8a44ca7c490ecbc
parent59b1c43a6bfee5bc6002fbed93da17d8b5f95381 (diff)
downloadwebtrees-8d9d1cd59a59431e7082d679587edacc88916992.tar.gz
webtrees-8d9d1cd59a59431e7082d679587edacc88916992.tar.bz2
webtrees-8d9d1cd59a59431e7082d679587edacc88916992.zip
don't display sort column
-rw-r--r--includes/functions/functions_print_lists.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/functions/functions_print_lists.php b/includes/functions/functions_print_lists.php
index 058f07eb82..a9fe30c2de 100644
--- a/includes/functions/functions_print_lists.php
+++ b/includes/functions/functions_print_lists.php
@@ -1375,7 +1375,7 @@ function print_changes_list($change_ids, $sort, $show_parents=false) {
}
$return .= "<div style='margin-bottom:5px'>";
//-- Last change date/time & user
- $return .= /* I18N: [a record was] Changed on <date/time> by <user> */ WT_I18N::translate('Changed on %1$s by %2$s', $value['record']->LastChangeTimestamp(empty($SEARCH_SPIDER)), $value['record']->LastChangeUser());
+ $return .= /* I18N: [a record was] Changed on <date/time> by <user> */ WT_I18N::translate('Changed on %1$s by %2$s', $value['record']->LastChangeTimestamp(empty($SEARCH_SPIDER)), $value['record']->LastChangeUser());
$return .= "</div>"; // class='indent'
$return .= "</div>";
}
@@ -1504,7 +1504,7 @@ function print_changes_table($change_ids, $sort, $show_parents=false) {
//-- change date (sortable) hidden by datatables code
$return .= "<td style='display:none;'>" . strtotime(str_replace('-', '', $record->LastChangeTimestamp(false))) . "</td>";
//-- names (sortable) hidden by datatables code
- $return .= "<td>" . $record->getSortName() . "</td></tr>";
+ $return .= "<td style='display:none;'>" . $record->getSortName() . "</td></tr>";
}
//-- table footer