aboutsummaryrefslogtreecommitdiff
path: root/module
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@hornquist.se>2020-02-14 00:26:57 +0100
committerHugo Hörnquist <hugo@hornquist.se>2020-02-14 00:26:57 +0100
commitcdcc977c5b03acfade70e0eae33a24ea7018d505 (patch)
tree4ae2e37f120cdf8ad6b95853f8607b396dbf3a08 /module
parentReimplement date/time formatting in event list. (diff)
downloadcalp-cdcc977c5b03acfade70e0eae33a24ea7018d505.tar.gz
calp-cdcc977c5b03acfade70e0eae33a24ea7018d505.tar.xz
Kinda fixed contiuing css class.
Diffstat (limited to 'module')
-rw-r--r--module/output/html.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/output/html.scm b/module/output/html.scm
index 48dd27f9..5e721a4e 100644
--- a/module/output/html.scm
+++ b/module/output/html.scm
@@ -97,7 +97,7 @@
(div (@ (class "event CAL_" ,(html-attr (attr (parent ev) 'NAME))
,(when (date<? (as-date (attr ev 'DTSTART)) date)
" continued")
- ,(when (date<? (add-day date) (as-date (attr ev 'DTEND)))
+ ,(when (date<? date (as-date (attr ev 'DTEND)))
" continuing"))
(style ,style))
,((summary-filter) ev (attr ev 'SUMMARY))))