From a14861bfa46a7a22b07d0ed99e914b0a0da4c05a Mon Sep 17 00:00:00 2001 From: "Rob G. Healey" Date: Sun, 12 Sep 2010 05:28:05 +0000 Subject: [PATCH] NarrativeWeb: Fixed a typo on line 4251. svn: r15878 --- src/plugins/webreport/NarrativeWeb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/webreport/NarrativeWeb.py b/src/plugins/webreport/NarrativeWeb.py index fe29e6e2d..426d97eee 100644 --- a/src/plugins/webreport/NarrativeWeb.py +++ b/src/plugins/webreport/NarrativeWeb.py @@ -4248,7 +4248,7 @@ class IndividualPage(BasePage): boxbg += self.person_link(url, person, _NAME_STYLE_SHORT, thumbnailUrl=thumbnailUrl) else: boxbg += Html("span", short_name, class_ = "shortname unlinked", inline = True) - boxbg += Html("span", fullname, class_ = "fullname unlinked", inline = True) + boxbg += Html("span", full_name, class_ = "fullname unlinked", inline = True) shadow = Html("div", class_ = "shadow", inline = True, style="top: %dpx; left: %dpx;" % (top+_SHADOW, xoff+_SHADOW) )