summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Engster <deng@randomsample.de>2013-01-07 23:59:30 +0100
committerBastien Guerry <bzg@altern.org>2013-01-07 23:59:30 +0100
commit195173eef0aa687510440d8965832aa093649553 (patch)
tree26c5599f02013c26d0c9a66daa4c1f43c649813e
parent55a47896618e85ed9c4eb553e6bd07f74c40c36e (diff)
downloadorg-mode-195173eef0aa687510440d8965832aa093649553.tar.gz
org-icalendar.el (org-icalendar-ts-to-string): Fix bug in converting timezone
org-icalendar.el (org-icalendar-ts-to-string): Fix bug in converting timezone. TINYCHANGE
-rw-r--r--lisp/org-icalendar.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org-icalendar.el b/lisp/org-icalendar.el
index 389dc5d..12cd058 100644
--- a/lisp/org-icalendar.el
+++ b/lisp/org-icalendar.el
@@ -677,7 +677,7 @@ a time), or the day by one (if it does not contain a time)."
(setq fmt (if have-time
(replace-regexp-in-string "%Z"
org-icalendar-timezone
- org-icalendar-date-time-format)
+ org-icalendar-date-time-format t)
";VALUE=DATE:%Y%m%d"))
(concat keyword (format-time-string fmt time
(and (org-icalendar-use-UTC-date-timep)