*) re-enable popup configuration on status-page

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@3617 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
(no author) 18 years ago
parent d5b7eac6d7
commit 44fe8361ae

@ -103,7 +103,15 @@ public class Status {
httpdByteCountInputStream.resetCount(); httpdByteCountInputStream.resetCount();
httpdByteCountOutputStream.resetCount(); httpdByteCountOutputStream.resetCount();
redirect = true; redirect = true;
} } else if (post.containsKey("popup")) {
String trigger_enabled = (String) post.get("popup");
if (trigger_enabled.equals("false")) {
env.setConfig("browserPopUpTrigger", "false");
} else if (trigger_enabled.equals("true")){
env.setConfig("browserPopUpTrigger", "true");
}
redirect = true;
}
if (redirect) { if (redirect) {
prop.put("LOCATION",""); prop.put("LOCATION","");

Loading…
Cancel
Save