From 7f0e757bb522fda06eace048ee8542b55537aac1 Mon Sep 17 00:00:00 2001
From: reger
Date: Mon, 21 Jul 2014 19:26:12 +0200
Subject: [PATCH] fix bookmark.rss - channel end tag postion - link with html
entity
---
htroot/Bookmarks.java | 4 ++--
htroot/Bookmarks.rss | 26 +++++++++++++-------------
2 files changed, 15 insertions(+), 15 deletions(-)
diff --git a/htroot/Bookmarks.java b/htroot/Bookmarks.java
index 1c5b9595c..74733aa15 100644
--- a/htroot/Bookmarks.java
+++ b/htroot/Bookmarks.java
@@ -318,9 +318,9 @@ public class Bookmarks {
if (bookmark != null){
if (bookmark.getFeed() && isAdmin) {
- prop.put("display_bookmarks_"+count+"_link", "/FeedReader_p.html?url="+bookmark.getUrl());
+ prop.putXML("display_bookmarks_"+count+"_link", "/FeedReader_p.html?url="+bookmark.getUrl());
} else {
- prop.put("display_bookmarks_"+count+"_link",bookmark.getUrl());
+ prop.putXML("display_bookmarks_"+count+"_link",bookmark.getUrl());
}
prop.putHTML("display_bookmarks_"+count+"_title", bookmark.getTitle());
prop.putHTML("display_bookmarks_"+count+"_description", bookmark.getDescription());
diff --git a/htroot/Bookmarks.rss b/htroot/Bookmarks.rss
index f5dec691f..5a44ad6ce 100644
--- a/htroot/Bookmarks.rss
+++ b/htroot/Bookmarks.rss
@@ -1,16 +1,16 @@
-
-
- http://#[address]#/Bookmarks.html
-
-
- #{display_bookmarks}#-
-
- #[link]#
- #[rfc822date]#
- #[hash]#
- #[description]#
Tagged with | #{tags}##[tag]# | #{/tags}#
]]>
- #{tags}##{/tags}#
- #{/display_bookmarks}#
+
+
+ http://#[address]#/Bookmarks.html
+
+ #{display_bookmarks}#-
+
+ #[link]#
+ #[rfc822date]#
+ #[hash]#
+ #[description]#
Tagged with | #{tags}##[tag]# | #{/tags}#
]]>
+ #{tags}##{/tags}#
+ #{/display_bookmarks}#
+
\ No newline at end of file