no post hooks for fopen
This commit is contained in:
parent
e9af218562
commit
fd4b30ac6f
|
@ -317,11 +317,13 @@ class OC_FilesystemView {
|
|||
$result=$storage->$operation($interalPath);
|
||||
}
|
||||
$result=OC_FileProxy::runPostProxies($operation,$path,$result);
|
||||
if($operation!='fopen'){//no post hooks for fopen, the file stream is still open
|
||||
foreach($hooks as $hook){
|
||||
if($hook!='read'){
|
||||
OC_Hook::emit( OC_Filesystem::CLASSNAME, 'post_'.$hook, array( OC_Filesystem::signal_param_path => $path));
|
||||
}
|
||||
}
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue