do not use network graph cache if called from authorized account

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@7016 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
orbiter 15 years ago
parent 9ab06bc333
commit 610855e362

@ -426,10 +426,10 @@ public class NetworkGraph {
if (!bordercolor.equals("")) {
bannerPicture.setColor(bordercolor);
bannerPicture.line(0,0,0,height-1);
bannerPicture.line(0,0,width-1,0);
bannerPicture.line(width-1,0,width-1,height-1);
bannerPicture.line(0,height-1,width-1,height-1);
bannerPicture.line(0, 0, 0, height-1, 100);
bannerPicture.line(0, 0, width-1, 0, 100);
bannerPicture.line(width-1, 0, width-1, height-1, 100);
bannerPicture.line(0, height-1, width-1, height-1, 100);
}
// set timestamp

Loading…
Cancel
Save