From 14c4b6a4635b54040b8ffc4c8105710d41b90ee4 Mon Sep 17 00:00:00 2001 From: Tim G L Lyons Date: Mon, 3 Oct 2011 17:19:23 +0000 Subject: [PATCH] Fix backref links from events to person. In the event view, the 'Main Participants' was blank, as was the 'References' gramplet. svn: r18245 --- src/gen/lib/person.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gen/lib/person.py b/src/gen/lib/person.py index addcf4cff..b91562090 100644 --- a/src/gen/lib/person.py +++ b/src/gen/lib/person.py @@ -433,7 +433,7 @@ class Person(CitationBase, NoteBase, AttributeBase, MediaBase, :returns: Returns the list of objects referencing primary objects. :rtype: list """ - return self.get_citation_child_list() + return (self.get_citation_child_list() + self.event_ref_list) def merge(self, acquisition): """