diff --git a/htroot/IndexCreate_p.java b/htroot/IndexCreate_p.java index e2be76047..717a8dca7 100644 --- a/htroot/IndexCreate_p.java +++ b/htroot/IndexCreate_p.java @@ -307,7 +307,7 @@ public class IndexCreate_p { prop.put("indexing-queue_list_"+i+"_modified", daydate(pcentry.lastModified)); prop.put("indexing-queue_list_"+i+"_href",((pcentry.scraper == null) ? "0" : ("" + pcentry.scraper.getAnchors().size()))); prop.put("indexing-queue_list_"+i+"_anchor", ((pcentry.scraper == null) ? "-" : pcentry.scraper.getHeadline()) ); - prop.put("indexing-queue_list_"+i+"_url", pcentry.urlString); + prop.put("indexing-queue_list_"+i+"_url", pcentry.nomalizedURLString); dark = !dark; } } diff --git a/htroot/htdocsdefault/dir.java b/htroot/htdocsdefault/dir.java index ba77f7cbc..df43ea799 100644 --- a/htroot/htdocsdefault/dir.java +++ b/htroot/htdocsdefault/dir.java @@ -456,8 +456,7 @@ public class dir { public static void deletePhrase(plasmaSwitchboard switchboard, String urlstring, String phrase, String descr) { try { String urlhash = plasmaURL.urlHash(new URL(urlstring)); - //Set words = plasmaCondenser.getWords(("yacyshare " + phrase + " " + descr).getBytes()); - Set words = plasmaCondenser.getWords(); + Set words = plasmaCondenser.getWords(("yacyshare " + phrase + " " + descr).getBytes()); switchboard.removeReferences(urlhash, words); switchboard.loadedURL.remove(urlhash); } catch (Exception e) {