Skip to content

Commit

Permalink
LDEV-3349 - change default behaviour back to what it was, no breaking…
Browse files Browse the repository at this point in the history
… changes within minor releases
  • Loading branch information
michaeloffner committed Dec 2, 2024
1 parent 2980228 commit ca07bce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/lucee/runtime/net/http/ReqRspUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public final class ReqRspUtil {
private static boolean urlEncodeAllowPlus;

static {
urlEncodeAllowPlus = Caster.toBooleanValue(SystemUtil.getSystemPropOrEnvVar("lucee.url.encodeAllowPlus", "true"), true);
urlEncodeAllowPlus = Caster.toBooleanValue(SystemUtil.getSystemPropOrEnvVar("lucee.url.encodeAllowPlus", "false"), false);
}

private static Map<String, String> rootPathes = new ReferenceMap<String, String>(HARD, SOFT);
Expand Down

0 comments on commit ca07bce

Please sign in to comment.