From 4b8d3c8790798bc99329a5b78484a7f90642bf1f Mon Sep 17 00:00:00 2001 From: eehmke Date: Sun, 14 Oct 2012 11:33:26 +0300 Subject: [PATCH] Update collective/ptg/highslide/highslide.pt the python expression to define the title string was over-optimized: when description and copyright were present, the description was ignored. --- collective/ptg/highslide/highslide.pt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collective/ptg/highslide/highslide.pt b/collective/ptg/highslide/highslide.pt index 92602b6..2ed5931 100644 --- a/collective/ptg/highslide/highslide.pt +++ b/collective/ptg/highslide/highslide.pt @@ -6,7 +6,7 @@ tal:define="copyright image/copyright|string:; desc image/description|string:; title python: ' – ' + desc if desc else desc; - title python: ' – ©' + copyright if copyright else title;"> + title python: title + ' – ©' + copyright if copyright else title;">