Author: toad
Date: 2008-05-07 01:14:35 +0000 (Wed, 07 May 2008)
New Revision: 19811
Modified:
trunk/freenet/src/freenet/clients/http/WelcomeToadlet.java
Log:
Check for all KHTML based browsers.
They all have issues with activelinks.
Modified: trunk/freenet/src/freenet/clients/http/WelcomeToadlet.java
===================================================================
--- trunk/freenet/src/freenet/clients/http/WelcomeToadlet.java 2008-05-07
00:59:57 UTC (rev 19810)
+++ trunk/freenet/src/freenet/clients/http/WelcomeToadlet.java 2008-05-07
01:14:35 UTC (rev 19811)
@@ -564,7 +564,7 @@
HTMLNode bookmarkBoxContent = bookmarkBox.addChild("div", "class",
"infobox-content");
HTMLNode bookmarksList = bookmarkBoxContent.addChild("ul", "id",
"bookmarks");
- addCategoryToList(BookmarkManager.MAIN_CATEGORY, bookmarksList,
useragent != null && useragent.toLowerCase().indexOf("safari") >= 0);
+ addCategoryToList(BookmarkManager.MAIN_CATEGORY, bookmarksList,
useragent != null && useragent.toLowerCase().indexOf("khtml") >= 0);
// Fetch-a-key box
HTMLNode fetchKeyBox =
contentNode.addChild(ctx.getPageMaker().getInfobox("infobox-normal",
l10n("fetchKeyLabel")));