diff --git a/ChangeLog b/ChangeLog index 330838f39..04616fa2a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2006-08-24 Brian Matherly + * src/Config/_GrampsIniKeys.py: Handle invalid default key + * src/plugins/NarrativeWeb.py: Fix typos + 2006-08-24 Don Allingham * src/GrampsDb/_GrampsInMemDB.py: update maps properly on commit diff --git a/src/plugins/NarrativeWeb.py b/src/plugins/NarrativeWeb.py index a661f9142..a9f40df4f 100644 --- a/src/plugins/NarrativeWeb.py +++ b/src/plugins/NarrativeWeb.py @@ -1284,7 +1284,7 @@ class ContactPage(BasePage): of.write('') of.write('
') of.write('' % obj.get_description()) of.write('
\n') of.write('\n') @@ -2508,10 +2508,10 @@ class WebReportOptions(ReportOptions): data = cursor.first() while data: (handle, value) = data - if value[3]: - media_list.append([value[4],handle]) - else: + if not value[3]: html_list.append([value[4],handle]) + media_list.append([value[4],handle]) + data = cursor.next() cursor.close() media_list.sort()