diff --git a/source/de/anomic/plasma/plasmaSwitchboard.java b/source/de/anomic/plasma/plasmaSwitchboard.java index 9d3656b45..95c77a13b 100644 --- a/source/de/anomic/plasma/plasmaSwitchboard.java +++ b/source/de/anomic/plasma/plasmaSwitchboard.java @@ -434,9 +434,9 @@ public final class plasmaSwitchboard extends serverAbstractSwitch implements ser //Init bookmarks DB this.log.logConfig("Loading Bookmarks DB"); - File bookmarksFile = new File(getRootPath(), "DATA/SETTINGS/bookmarks.db"); - File tagsFile = new File(getRootPath(), "DATA/SETTINGS/bookmarkTags.db"); - File datesFile = new File(getRootPath(), "DATA/SETTINGS/bookmarkDates.db"); + File bookmarksFile = new File(getRootPath(), "DATA/WORK/bookmarks.db"); + File tagsFile = new File(getRootPath(), "DATA/WORK/bookmarkTags.db"); + File datesFile = new File(getRootPath(), "DATA/WORK/bookmarkDates.db"); this.bookmarksDB = new bookmarksDB(bookmarksFile, tagsFile, datesFile, 512); this.log.logConfig("Loaded Bookmarks DB from files "+ bookmarksFile.getName()+ ", "+tagsFile.getName()); this.log.logConfig(this.bookmarksDB.tagsSize()+" Tag, "+this.bookmarksDB.bookmarksSize()+" Bookmarks");