diff options
author | Georg Ehrke <dev@georgswebsite.de> | 2012-09-10 14:40:54 +0200 |
---|---|---|
committer | Georg Ehrke <dev@georgswebsite.de> | 2012-09-10 14:41:27 +0200 |
commit | 463b48b2e1e337c1531f094b26cae79d11bdcf27 (patch) | |
tree | d64961865d84138fd5463d534d39ae069db0786c /lib | |
parent | 86c3f9b8fec3d529c73c4725962e878ab90850df (diff) | |
download | nextcloud-server-463b48b2e1e337c1531f094b26cae79d11bdcf27.tar.gz nextcloud-server-463b48b2e1e337c1531f094b26cae79d11bdcf27.zip |
fix file upload
Diffstat (limited to 'lib')
-rw-r--r-- | lib/filesystemview.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/filesystemview.php b/lib/filesystemview.php index 743f9403011..3a17af510cf 100644 --- a/lib/filesystemview.php +++ b/lib/filesystemview.php @@ -295,12 +295,12 @@ class OC_FilesystemView { OC_Filesystem::signal_post_create, array( OC_Filesystem::signal_param_path => $path) ); - } + }/* OC_Hook::emit( OC_Filesystem::CLASSNAME, OC_Filesystem::signal_post_write, array( OC_Filesystem::signal_param_path => $path) - ); + );*/ OC_FileProxy::runPostProxies('file_put_contents', $absolutePath, $count); return $count > 0; }else{ |