Fix new directories with weird chars (one#two?three) do not get created correctly

This commit is contained in:
nathangray 2019-01-21 11:37:27 -07:00
parent 91fffd045e
commit 498db61f46

View File

@ -586,7 +586,7 @@ app.classes.filemanager = AppJS.extend(
}
}
}
self._do_action('createdir', dir, true, path); // true=synchronous request
self._do_action('createdir', egw.encodePathComponent(dir), true, path); // true=synchronous request
self.change_dir((path == '/' ? '' : path)+'/'+ dir);
}
},this.egw.lang('New directory'),this.egw.lang('Create directory'));