Use external blog links in RSS feed

pull/2/head
Noah 2014-04-11 18:22:02 +00:00
부모 bd9e398120
커밋 a4a83d4a6c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제

파일 보기

@ -286,7 +286,7 @@ def rss():
channel.appendChild(item)
xml_add_text_tags(doc, item, [
["title", post["subject"]],
["link", url_for("blog.entry", fid=post["fid"])],
["link", url_for("blog.entry", fid=post["fid"], _external=True)],
["description", post["body"]],
["pubDate", time.strftime(rss_time, time.gmtime(post["time"]))],
])