I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 1407cff4 authored by zzz's avatar zzz
Browse files

fix anonymous proxy flag

parent 0e48557b
No related branches found
No related tags found
No related merge requests found
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
String c = request.getParameter("c"); String c = request.getParameter("c");
if (c != null && if (c != null &&
(c.length() == 2 || c.length() == 7) && (c.length() == 2 || c.length() == 7) &&
c.replaceAll("[a-z_]", "").length() == 0) { c.replaceAll("[a-z0-9_]", "").length() == 0) {
java.io.OutputStream cout = response.getOutputStream(); java.io.OutputStream cout = response.getOutputStream();
String base = net.i2p.I2PAppContext.getGlobalContext().getBaseDir().getAbsolutePath(); String base = net.i2p.I2PAppContext.getGlobalContext().getBaseDir().getAbsolutePath();
String file = "docs" + java.io.File.separatorChar + "icons" + java.io.File.separatorChar + String file = "docs" + java.io.File.separatorChar + "icons" + java.io.File.separatorChar +
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment