remove chroot from filesystem api

remotes/origin/stable5
Robin Appelman 13 years ago
parent 3ff0772a05
commit 01594b8610
  1. 10
      lib/files/filesystem.php
  2. 11
      lib/filesystem.php

@ -281,16 +281,6 @@ class Filesystem {
}
}
/**
* change the root to a fake root
*
* @param string $fakeRoot
* @return bool
*/
static public function chroot($fakeRoot) {
return self::$defaultInstance->chroot($fakeRoot);
}
/**
* @brief get the relative path of the root data directory for the current user
* @return string

@ -81,17 +81,6 @@ class OC_Filesystem {
\OC\Files\Filesystem::tearDown();
}
/**
* change the root to a fake root
*
* @deprecated OC_Filesystem is replaced by \OC\Files\Filesystem
* @param string $fakeRoot
* @return bool
*/
static public function chroot($fakeRoot) {
return \OC\Files\Filesystem::chroot($fakeRoot);
}
/**
* @brief get the relative path of the root data directory for the current user
* @return string

Loading…
Cancel
Save