From ffe82760638f2d436dd46e67de04fa2b0999a505 Mon Sep 17 00:00:00 2001 From: Michael Peter Christen Date: Wed, 6 Nov 2013 18:05:46 +0100 Subject: [PATCH] replaced referrer link masking to 'pure' links to the referring page (that was more useful during testing) --- htroot/HostBrowser.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/htroot/HostBrowser.java b/htroot/HostBrowser.java index 833b77f00..8d53f191f 100644 --- a/htroot/HostBrowser.java +++ b/htroot/HostBrowser.java @@ -553,7 +553,6 @@ public class HostBrowser { } } catch (final IOException e) { } - } this.references_external = (rc_external == null || rc_external.intValue() <= 0) ? 0 : rc_external.intValue(); this.references_exthosts = (rc_exthosts == null || rc_exthosts.intValue() <= 0) ? 0 : rc_exthosts.intValue(); @@ -562,7 +561,7 @@ public class HostBrowser { StringBuilder sbi = new StringBuilder(); int c = 0; for (String s: references_internal_urls) { - sbi.append("info"); + sbi.append("info"); c++; if (c % 80 == 0) sbi.append("
"); } @@ -570,7 +569,7 @@ public class HostBrowser { StringBuilder sbe = new StringBuilder(); c = 0; for (String s: references_external_urls) { - sbe.append("info"); + sbe.append("info"); c++; if (c % 80 == 0) sbe.append("
"); }