Skip to content

Commit a44bd91

Browse files
committed
Return success status of DELETE request. Fixes blueimp#1796.
1 parent d45deb1 commit a44bd91

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

server/php/upload.class.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/*
3-
* jQuery File Upload Plugin PHP Class 5.17.1
3+
* jQuery File Upload Plugin PHP Class 5.17.2
44
* https://github.com/blueimp/jQuery-File-Upload
55
*
66
* Copyright 2010, Sebastian Tschan
@@ -670,7 +670,7 @@ public function delete($print_response = true) {
670670
}
671671
}
672672
}
673-
return $this->generate_response($info, $print_response);
673+
return $this->generate_response($success, $print_response);
674674
}
675675

676676
}

0 commit comments

Comments
 (0)