clear user filecache after the user mount configuration has changed

remotes/origin/stable45
Robin Appelman 14 years ago
parent 2144b2f37a
commit d4fd47d43f
  1. 7
      lib/util.php

@ -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…
Cancel
Save