From 8be9e00ff5dcdd6793dbde990aaa01c95764400d Mon Sep 17 00:00:00 2001 From: "Rob G. Healey" Date: Fri, 9 Apr 2010 22:35:35 +0000 Subject: [PATCH] Fixed note issue in header_note and footer_note. svn: r15069 --- src/plugins/webreport/NarrativeWeb.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/webreport/NarrativeWeb.py b/src/plugins/webreport/NarrativeWeb.py index c22fe4c4e..e7509ef34 100644 --- a/src/plugins/webreport/NarrativeWeb.py +++ b/src/plugins/webreport/NarrativeWeb.py @@ -886,7 +886,7 @@ class BasePage(object): footer += user_footer # attach note - user_footer += note.get_text() + user_footer += note.get() value = _dd.display(date.Today()) msg = _('Generated by ' @@ -1006,7 +1006,7 @@ class BasePage(object): headerdiv += user_header # attach note - user_header += note.get_text() + user_header += note.get() # Begin Navigation Menu body += self.display_nav_links(title)