Skip to content

Commit

Permalink
added tooltips to folder tree
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4406 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
apfelmaennchen committed Jan 26, 2008
1 parent da8c850 commit d3ce9eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htroot/Bookmarks.java
Expand Up @@ -421,7 +421,7 @@ private static int recurseFolders(Iterator it, String root, int count, boolean n
Iterator bit=switchboard.bookmarksDB.getBookmarksIterator(fn, isAdmin);
while(bit.hasNext()){
bookmark=switchboard.bookmarksDB.getBookmark((String)bit.next());
prop.put("folderlist_"+count+"_folder", "<li><a href=\""+bookmark.getUrl()+"\">"+ bookmark.getTitle()+"</a></li>");
prop.put("folderlist_"+count+"_folder", "<li><a href=\""+bookmark.getUrl()+"\" title=\""+bookmark.getDescription()+"\">"+ bookmark.getTitle()+"</a></li>");
count++;
}
if(it.hasNext()){
Expand Down

0 comments on commit d3ce9eb

Please sign in to comment.