diff --git a/htroot/Collage.html b/htroot/Collage.html index f47cbacef..ac97ed52c 100755 --- a/htroot/Collage.html +++ b/htroot/Collage.html @@ -17,6 +17,24 @@ form dd { } + #(emb)# @@ -49,4 +67,4 @@ document.body.style.background = "#000"; #%env/templates/footer.template%# #(/emb)# - \ No newline at end of file + diff --git a/htroot/Collage.java b/htroot/Collage.java index 3cbd23646..dd7606d74 100755 --- a/htroot/Collage.java +++ b/htroot/Collage.java @@ -101,6 +101,7 @@ public class Collage { if (fifoSize > 0) { prop.put("imgurl", "1"); int c = 0; + int yOffset = embed ? 0 : 70; for (int i = 0; i < fifoSize; i++) { yacyURL baseURL = origins[i].baseURL; @@ -111,14 +112,17 @@ public class Collage { if ((serverCore.isLocalhost(baseURL.getHost()) || serverCore.isLocalhost(imageURL.getHost())) && sb.getConfigBool("adminAccountForLocalhost", false)) continue; + long z = imgZIndex[i]; prop.put("imgurl_list_" + c + "_url", "" + "" + "
"); c++; @@ -133,4 +137,4 @@ public class Collage { prop.put("emb_publicQueueSize", ResultImages.publicQueueHighSize() + "+" + ResultImages.publicQueueLowSize()); return prop; } -} \ No newline at end of file +}