summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2013-06-27 18:57:09 +0200
committerBastien Guerry <bzg@altern.org>2013-06-27 18:57:09 +0200
commit21d1d4d1371c46f463a113be9fe8f22a18e4e880 (patch)
tree05c430581363d09e845a7726f2eab1fb45a89aa3
parentedcf9c95eb6f7ff9b844e7052b07933f8ffc5481 (diff)
downloadorg-mode-21d1d4d1371c46f463a113be9fe8f22a18e4e880.tar.gz
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.
-rw-r--r--contrib/lisp/ox-rss.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/lisp/ox-rss.el b/contrib/lisp/ox-rss.el
index ad02673..3146460 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)))