0000975: remove extra (/b) HTML tags in NarrativeWeb

svn: r8298
This commit is contained in:
Brian Matherly 2007-03-14 03:24:17 +00:00
parent e6bfaf39fd
commit 9ab572e278
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2007-03-13 Brian Matherly <brian@gramps-project.org>
* src/plugins/NarrativeWeb.py: 0000975: remove extra (/b) HTML tags in
NarrativeWeb
2007-03-13 Brian Matherly <brian@gramps-project.org>
* src/plugins/NarrativeWeb.py: 0000976: NarrativeWeb: gramps ID always
output regardless of setting

View File

@ -672,8 +672,8 @@ class SurnamePage(BasePage):
of.write('<h3>%s</h3>\n' % title)
of.write('<p>%s</p>\n' % msg)
of.write('<table class="infolist">\n<thead><tr>\n')
of.write('<th>%s</b></th>\n' % _('Name'))
of.write('<th>%s</b></th>\n' % _('Birth date'))
of.write('<th>%s</th>\n' % _('Name'))
of.write('<th>%s</th>\n' % _('Birth date'))
of.write('</tr></thead>\n<tbody>\n')
for person_handle in person_handle_list: