This should actually make the 'Shared' directory automatically everytime

remotes/origin/stable
Michael Gapczynski 14 years ago
parent 5fbed936bf
commit e4c9871299
  1. 1
      apps/files_sharing/sharedstorage.php
  2. 2
      lib/util.php

@ -35,6 +35,7 @@ class OC_Filestorage_Shared extends OC_Filestorage {
if (!OC_Filesystem::is_dir($this->datadir)) {
OC_Filesystem::mkdir($this->datadir);
}
$this->datadir .= "/";
}
public function getInternalPath($path) {

@ -54,7 +54,7 @@ class OC_Util {
OC_Filesystem::mount($rootStorage,'/');
// TODO add this storage provider in a proper way
$sharedStorage = OC_Filesystem::createStorage('shared',array('datadir'=>'/'.OC_User::getUser().'/files/Shared/'));
$sharedStorage = OC_Filesystem::createStorage('shared',array('datadir'=>'/'.OC_User::getUser().'/files/Shared'));
OC_Filesystem::mount($sharedStorage,'/'.OC_User::getUser().'/files/Shared/');
$CONFIG_DATADIRECTORY = "$CONFIG_DATADIRECTORY_ROOT/$user/$root";

Loading…
Cancel
Save