diff options
| 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 |
| commit | 8d9d1cd59a59431e7082d679587edacc88916992 (patch) | |
| tree | 3acf18837fd34485c16dca33e8a44ca7c490ecbc | |
| parent | 59b1c43a6bfee5bc6002fbed93da17d8b5f95381 (diff) | |
| download | webtrees-8d9d1cd59a59431e7082d679587edacc88916992.tar.gz webtrees-8d9d1cd59a59431e7082d679587edacc88916992.tar.bz2 webtrees-8d9d1cd59a59431e7082d679587edacc88916992.zip | |
don't display sort column
| -rw-r--r-- | includes/functions/functions_print_lists.php | 4 |
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 |
