Merge pull request #4319 from owncloud/fixing-undefined-index-mtime-cache-scanner-master

use isset to prevent undefined index
This commit is contained in:
Thomas Müller 2013-08-05 07:47:29 -07:00
commit 1bbe979345
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ class Scanner extends BasicEmitter {
$newData = $data;
if ($reuseExisting and $cacheData = $this->cache->get($file)) {
// only reuse data if the file hasn't explicitly changed
if ($data['mtime'] === $cacheData['mtime']) {
if (isset($data['mtime']) && isset($cacheData['mtime']) && $data['mtime'] === $cacheData['mtime']) {
if (($reuseExisting & self::REUSE_SIZE) && ($data['size'] === -1)) {
$data['size'] = $cacheData['size'];
}