From 7b63c66a08b85e6bbf1d2b3c761ea30b78eb56f8 Mon Sep 17 00:00:00 2001 From: apfelmaennchen Date: Sun, 14 Sep 2008 18:45:08 +0000 Subject: [PATCH] - bugfix in bookmarksDB.Tag.hasPublicItems() - this anoying little bug prevented display of public items without admin login for /xml/bookmarks/... git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@5151 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- source/de/anomic/data/bookmarksDB.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/de/anomic/data/bookmarksDB.java b/source/de/anomic/data/bookmarksDB.java index dfc06fc81..1db9959f4 100644 --- a/source/de/anomic/data/bookmarksDB.java +++ b/source/de/anomic/data/bookmarksDB.java @@ -967,7 +967,7 @@ public class bookmarksDB { return urlHashes; } public boolean hasPublicItems(){ - final Iterator it=getBookmarksIterator(this.getTagHash(), false); + final Iterator it=getBookmarksIterator(this.getTagName(), false); if(it.hasNext()){ return true; }