From 21d1d4d1371c46f463a113be9fe8f22a18e4e880 Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Thu, 27 Jun 2013 18:57:09 +0200 Subject: [PATCH] ox-rss.el (org-rss-build-channel-info): Don't export the title * ox-rss.el (org-rss-build-channel-info): Don't export the title of the RSS channel, as it produce invalid RSS 2.0. --- contrib/lisp/ox-rss.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/lisp/ox-rss.el b/contrib/lisp/ox-rss.el index ad0267306..314646098 100644 --- a/contrib/lisp/ox-rss.el +++ b/contrib/lisp/ox-rss.el @@ -304,7 +304,7 @@ as a communication channel." (defun org-rss-build-channel-info (info) "Build the RSS channel information." (let* ((system-time-locale "C") - (title (org-export-data (plist-get info :title) info)) + (title (plist-get info :title)) (email (org-export-data (plist-get info :email) info)) (author (and (plist-get info :with-author) (let ((auth (plist-get info :author)))