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 7a77673 commit 41d7d61Copy full SHA for 41d7d61
server/php/UploadHandler.php
@@ -1,6 +1,6 @@
1
<?php
2
/*
3
- * jQuery File Upload Plugin PHP Class 5.19.1
+ * jQuery File Upload Plugin PHP Class 5.19.2
4
* https://github.com/blueimp/jQuery-File-Upload
5
*
6
* Copyright 2010, Sebastian Tschan
@@ -202,7 +202,7 @@ protected function fix_integer_overflow($size) {
202
203
protected function get_file_size($file_path, $clear_stat_cache = false) {
204
if ($clear_stat_cache) {
205
- clearstatcache();
+ clearstatcache(true, $file_path);
206
}
207
return $this->fix_integer_overflow(filesize($file_path));
208
0 commit comments