We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f74ffcc commit 4098aa8Copy full SHA for 4098aa8
BlueImp/UploadHandler.php
@@ -435,7 +435,7 @@ public function post() {
435
header('Vary: Accept');
436
foreach ($info as $key => $item) {
437
$info[$key]->filePath = substr($item->url, strlen($this->options['webpath']));
438
- $info[$key]->filePath = preg_replace('/(.)\\1/','$1',$info[$key]->filePath);
+ $info[$key]->filePath = urldecode(preg_replace('/(.)\\1/','$1',$info[$key]->filePath));
439
}
440
$json = json_encode($info);
441
$redirect = isset($_REQUEST['redirect']) ?
0 commit comments