Fix warning in logs

This commit is contained in:
Victor Dubiniuk 2014-04-10 20:34:29 +03:00
parent cd4f4d97f5
commit 6dde8f11bd
2 changed files with 3 additions and 3 deletions

View File

@ -15,8 +15,8 @@ namespace OCA\Documents;
class Filter_Office { class Filter_Office {
const NATIVE_MIMETYPE = 'application/vnd.oasis.opendocument.text'; const NATIVE_MIMETYPE = 'application/vnd.oasis.opendocument.text';
private static $readSpec; private $readSpec;
private static $writeSpec; private $writeSpec;
/* sample mimespec /* sample mimespec
array ( array (

View File

@ -39,7 +39,7 @@ class Genesis {
* */ * */
public function __construct(\OCA\Documents\File $file){ public function __construct(\OCA\Documents\File $file){
$owner = $file->getOwner(); $owner = $file->getOwner();
list($ownerView, $path) = $file->getOwnerViewAndPath(); list($view, $path) = $file->getOwnerViewAndPath();
$this->view = new View('/' . $owner); $this->view = new View('/' . $owner);