* src/plugins/NarrativeWeb.py: fix #0000349: NarrativeWebsite sorting

svn: r7197
This commit is contained in:
Brian Matherly 2006-08-18 01:16:13 +00:00
parent f95f7496de
commit d760adaa58
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,6 @@
2006-08-17 Brian Matherly <brian@gramps-project.org>
* src/plugins/NarrativeWeb.py: fix #0000349: NarrativeWebsite sorting
2006-08-17 Don Allingham <don@gramps-project.org>
* src/DataViews/_PersonView.py: rebuild after compare and
merge (bug #350)

View File

@ -2725,7 +2725,7 @@ def sort_people(db,handle_list):
surname = primary_name.group_as
else:
surname = db.get_name_group_mapping(primary_name.surname)
sortnames[node[0]] = primary_name.sname
sortnames[node[0]] = _nd.sort_string(primary_name)
if sname_sub.has_key(surname):
sname_sub[surname].append(node[0])
else: