Kill OC_FileProxy references

pull/1/head
Victor Dubiniuk 9 years ago
parent dd376e0dfa
commit fa1826afdc

@ -256,10 +256,7 @@ class SessionController extends Controller{
$memberCount = count($memberIds) - 1;
if ($view->file_exists($path)){
$proxyStatus = \OC_FileProxy::$enabled;
\OC_FileProxy::$enabled = false;
$currentHash = sha1($view->file_get_contents($path));
\OC_FileProxy::$enabled = $proxyStatus;
if (!Helper::isVersionsEnabled() && $currentHash !== $session->getGenesisHash()){
// Original file was modified externally. Save to a new one

@ -58,12 +58,7 @@ class Genesis {
$mimetype = $view->getMimeType($path);
$data = Filter::read($content, $mimetype);
$proxyStatus = \OC_FileProxy::$enabled;
\OC_FileProxy::$enabled = false;
$this->view->file_put_contents($this->path, $data['content']);
\OC_FileProxy::$enabled = $proxyStatus;
}
try {
@ -87,12 +82,7 @@ class Genesis {
protected function getDocumentHash($view, $path){
$this->validate($view, $path);
$proxyStatus = \OC_FileProxy::$enabled;
\OC_FileProxy::$enabled = false;
$hash = sha1($view->file_get_contents($path));
\OC_FileProxy::$enabled = $proxyStatus;
return $hash;
}

Loading…
Cancel
Save