OK, I was able to find a workaround for this. It's definitely an issue in 2.7.1, but you can work around it "double-encoding" a space character. Encode a percent sign (%25) followed by a space (%20) but without the %. In other words, use: %2520 => %25 becomes '%', so this becomes '%20', wh...