Skip to content

Commit

Permalink
*) removed double encoding (http://forum.yacy-websuche.de/viewtopic.p…
Browse files Browse the repository at this point in the history
…hp?t=368)

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4138 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
low012 committed Oct 3, 2007
1 parent 3e60ae9 commit e2f3268
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions htroot/Bookmarks.java
Expand Up @@ -271,9 +271,9 @@ public static serverObjects respond(httpHeader header, serverObjects post, serve
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())));
Expand Down

0 comments on commit e2f3268

Please sign in to comment.