forked from I2P_Developers/i2p.i2p
updates after review:
Disable clients.config editing in UI Strip single quotes too Fix double-escaping in susimail folder page
This commit is contained in:
@ -1624,7 +1624,8 @@ public class DataHelper {
|
||||
if (orig == null) return "";
|
||||
String t1 = orig.replace('<', ' ');
|
||||
String rv = t1.replace('>', ' ');
|
||||
rv = rv.replace("\"", "%22");
|
||||
rv = rv.replace('\"', ' ');
|
||||
rv = rv.replace('\'', ' ');
|
||||
return rv;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user