diff options
| author | spiderr <spiderr@bitweaver.org> | 2021-02-22 00:37:51 -0500 |
|---|---|---|
| committer | spiderr <spiderr@bitweaver.org> | 2021-02-22 00:37:51 -0500 |
| commit | daa6cb949dac714657a255466c140dabe4153969 (patch) | |
| tree | a3d13c13cafbb1295c75974462ce98b6511a1d9d | |
| parent | 16ffaf51374aef2c38b99c2ab1f97c3545643e7a (diff) | |
| parent | c2561b4d9b429a0ae85905f17c22b0e6453bf692 (diff) | |
| download | liberty-daa6cb949dac714657a255466c140dabe4153969.tar.gz liberty-daa6cb949dac714657a255466c140dabe4153969.tar.bz2 liberty-daa6cb949dac714657a255466c140dabe4153969.zip | |
Merge branch 'master' of github.com:bitweaver/liberty
| -rw-r--r-- | plugins/processor.imagick.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/processor.imagick.php b/plugins/processor.imagick.php index e45b7aa..76c9b6d 100644 --- a/plugins/processor.imagick.php +++ b/plugins/processor.imagick.php @@ -36,6 +36,7 @@ function liberty_imagick_resize_image( &$pFileHash ) { global $gBitSystem; $pFileHash['error'] = NULL; $ret = NULL; + clearstatcache( true, $pFileHash['source_file'] ); if( !empty( $pFileHash['source_file'] ) && file_exists( $pFileHash['source_file'] ) && is_file( $pFileHash['source_file'] ) && (filesize( $pFileHash['source_file'] ) > 0) ) { try { $im = new Imagick(); |
