diff options
| author | fisharebest <fisharebest@gmail.com> | 2011-11-18 16:04:17 +0000 |
|---|---|---|
| committer | fisharebest <fisharebest@gmail.com> | 2011-11-18 16:04:17 +0000 |
| commit | 194ef6b686d38a8c6e20d186ea6d90e5effb48d0 (patch) | |
| tree | 2a7f1ca3f6b306d0505bc4dc529f8f5e0945a51c /includes | |
| parent | 9150739079e01b06050eabfd8e0710c2f76a3a65 (diff) | |
| download | webtrees-194ef6b686d38a8c6e20d186ea6d90e5effb48d0.tar.gz webtrees-194ef6b686d38a8c6e20d186ea6d90e5effb48d0.tar.bz2 webtrees-194ef6b686d38a8c6e20d186ea6d90e5effb48d0.zip | |
Fix: default sort ordering for individual and family lists - should sort by surname
Diffstat (limited to 'includes')
| -rw-r--r-- | includes/functions/functions_print_lists.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/includes/functions/functions_print_lists.php b/includes/functions/functions_print_lists.php index d1918aff61..94c0b5da4e 100644 --- a/includes/functions/functions_print_lists.php +++ b/includes/functions/functions_print_lists.php @@ -92,6 +92,7 @@ function print_indi_table($datalist, $option='') { /* 18 DEAT */ {"bVisible": false}, /* 19 TREE */ {"bVisible": false} ], + "aaSorting": [[1, "asc"]], "iDisplayLength": 20, "sPaginationType": "full_numbers" }); @@ -508,6 +509,7 @@ function print_fam_table($datalist, $option='') { /* 17 DEAT */ {"bVisible": false}, /* 18 TREE */ {"bVisible": false} ], + "aaSorting": [[1, "asc"]], "iDisplayLength": 20, "sPaginationType": "full_numbers" }); |
