From 4e150e5abaf934052ec675700a9612b884e179f8 Mon Sep 17 00:00:00 2001 From: SNoiraud Date: Mon, 15 Aug 2016 21:56:00 +0200 Subject: [PATCH] Narrativeweb : ancestortree.css link incorrect when use into a CMS. --- gramps/plugins/webreport/narrativeweb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gramps/plugins/webreport/narrativeweb.py b/gramps/plugins/webreport/narrativeweb.py index 7181ec3d9..a4ca2f20a 100644 --- a/gramps/plugins/webreport/narrativeweb.py +++ b/gramps/plugins/webreport/narrativeweb.py @@ -6285,7 +6285,7 @@ class PersonPages(BasePage): # graph is being created? if self.report.options["ancestortree"]: if self.usecms: - fname = "".join([self.target_uri, "css", "ancestortree.css"]) + fname = "/".join([self.target_uri, "css", "ancestortree.css"]) else: fname = "/".join(["css", "ancestortree.css"]) url = self.report.build_url_fname(fname, None, self.uplink)