From e2f3268c13c5836c5f4c3863d45935fcab2fbca8 Mon Sep 17 00:00:00 2001 From: low012 Date: Wed, 3 Oct 2007 20:13:32 +0000 Subject: [PATCH] *) removed double encoding (http://forum.yacy-websuche.de/viewtopic.php?t=368) git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4138 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- htroot/Bookmarks.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htroot/Bookmarks.java b/htroot/Bookmarks.java index 3cdd3ccd2..1f63e0607 100644 --- a/htroot/Bookmarks.java +++ b/htroot/Bookmarks.java @@ -271,9 +271,9 @@ public class Bookmarks { bookmark=switchboard.bookmarksDB.getBookmark((String)it.next()); if(bookmark!=null){ if(bookmark.getFeed() && isAdmin) - prop.put("bookmarks_"+count+"_link", "/FeedReader_p.html?url="+de.anomic.data.htmlTools.encodeUnicode2html(bookmark.getUrl(), false)); + prop.put("bookmarks_"+count+"_link", "/FeedReader_p.html?url="+bookmark.getUrl()); else - prop.put("bookmarks_"+count+"_link", de.anomic.data.htmlTools.encodeUnicode2html(bookmark.getUrl(), false)); + prop.put("bookmarks_"+count+"_link",bookmark.getUrl()); prop.put("bookmarks_"+count+"_title", bookmark.getTitle()); prop.put("bookmarks_"+count+"_description", bookmark.getDescription()); prop.put("bookmarks_"+count+"_date", serverDate.dateToiso8601(new Date(bookmark.getTimeStamp())));