Bug #3816: Fixxed header note so that there is no formatting. Straight HTML.

svn: r15055
This commit is contained in:
Rob G. Healey 2010-04-07 23:43:37 +00:00
parent 98146a9b6c
commit 003029f0bc

View File

@ -1004,13 +1004,12 @@ class BasePage(object):
header_note = self.report.options['headernote']
if header_note:
note = db.get_note_from_gramps_id(header_note)
note_text = self.get_note_format(note)
user_header = Html("div", id = 'user_header')
headerdiv += user_header
# attach note
user_header += note_text
user_header += note.get_text()
# Begin Navigation Menu
body += self.display_nav_links(title)