This commit is contained in:
Shinsuke Sugaya 2014-08-26 06:03:06 +09:00
parent d29f65a6aa
commit f4a5853862

View file

@ -128,6 +128,8 @@ public class WizardAction implements Serializable {
final char c = configPath.charAt(i);
if (c == '\\') {
buf.append('/');
} else if (c == ' ') {
buf.append("%20");
} else if (CharUtil.isUrlChar(c)) {
buf.append(c);
} else {