clear user filecache after the user mount configuration has changed
This commit is contained in:
parent
2144b2f37a
commit
d4fd47d43f
1 changed files with 7 additions and 0 deletions
|
@ -58,6 +58,13 @@ class OC_Util {
|
|||
OC_Filesystem::mount($options['class'], $options['options'], $mountPoint);
|
||||
}
|
||||
}
|
||||
|
||||
$mtime=filemtime($user_root.'/mount.php');
|
||||
$previousMTime=OC_Preferences::getValue($user,'files','mountconfigmtime',0);
|
||||
if($mtime>$previousMTime){//mount config has changed, filecache needs to be updated
|
||||
OC_FileCache::clear($user);
|
||||
OC_Preferences::setValue($user,'files','mountconfigmtime',$mtime);
|
||||
}
|
||||
}
|
||||
OC_Hook::emit('OC_Filesystem', 'setup', array('user' => $user, 'user_dir' => $user_dir));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue