mirror of
https://github.com/Studio-42/elFinder
synced 2026-06-08 12:37:09 +00:00
_save calls fixes
This commit is contained in:
@@ -821,8 +821,8 @@ class elFinderVolumeMySQL extends elFinderVolumeDriver {
|
||||
$this->clearcache();
|
||||
|
||||
$mime = $stat['mime'];
|
||||
$w = !empty($stat['w']) ? $stat['w'] : 0;
|
||||
$h = !empty($stat['h']) ? $stat['h'] : 0;
|
||||
$w = !empty($stat['width']) ? $stat['width'] : 0;
|
||||
$h = !empty($stat['height']) ? $stat['height'] : 0;
|
||||
|
||||
$id = $this->_joinPath($dir, $name);
|
||||
rewind($fp);
|
||||
|
||||
Reference in New Issue
Block a user