diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index 7b12e21e9..0eea893f9 100644 --- a/gramps2/ChangeLog +++ b/gramps2/ChangeLog @@ -1,3 +1,6 @@ +2005-08-16 Don Allingham + * src/plugins/NavWebPage.py: fix paths in surname page + 2005-08-15 Alex Roitman * NEWS: Update. diff --git a/gramps2/src/plugins/NavWebPage.py b/gramps2/src/plugins/NavWebPage.py index 2c8401d77..0996f495f 100644 --- a/gramps2/src/plugins/NavWebPage.py +++ b/gramps2/src/plugins/NavWebPage.py @@ -572,7 +572,7 @@ class SurnamePage(BasePage): for person_handle in person_handle_list: person = db.get_person_from_handle(person_handle) of.write('') - path = self.build_path(person.handle,"ppl",False) + path = self.build_path(person.handle,"ppl",True) self.person_link(of, self.build_name(path,person.handle), person.get_primary_name().get_first_name(), person.gramps_id,False) @@ -1362,8 +1362,6 @@ class IndividualPage(BasePage): all_events = [handle for handle in [self.person.get_birth_handle(), self.person.get_death_handle()] if handle] + self.person.get_event_list() - print all_events - if not all_events: return