move the private namespace OC into lib/private - OCP will stay in lib/public
Conflicts: lib/private/vcategories.php
This commit is contained in:
parent
a711399e62
commit
9c9dc276b7
|
@ -73,10 +73,10 @@ class Autoloader {
|
|||
}
|
||||
} elseif (strpos($class, 'OC_') === 0) {
|
||||
// first check for legacy classes if underscores are used
|
||||
$paths[] = 'legacy/' . strtolower(str_replace('_', '/', substr($class, 3)) . '.php');
|
||||
$paths[] = strtolower(str_replace('_', '/', substr($class, 3)) . '.php');
|
||||
$paths[] = 'private/legacy/' . strtolower(str_replace('_', '/', substr($class, 3)) . '.php');
|
||||
$paths[] = 'private/' . strtolower(str_replace('_', '/', substr($class, 3)) . '.php');
|
||||
} elseif (strpos($class, 'OC\\') === 0) {
|
||||
$paths[] = strtolower(str_replace('\\', '/', substr($class, 3)) . '.php');
|
||||
$paths[] = 'private/' . strtolower(str_replace('\\', '/', substr($class, 3)) . '.php');
|
||||
} elseif (strpos($class, 'OCP\\') === 0) {
|
||||
$paths[] = 'public/' . strtolower(str_replace('\\', '/', substr($class, 4)) . '.php');
|
||||
} elseif (strpos($class, 'OCA\\') === 0) {
|
||||
|
|
|
@ -164,7 +164,7 @@ class OC {
|
|||
|
||||
// set the right include path
|
||||
set_include_path(
|
||||
OC::$SERVERROOT . '/lib' . PATH_SEPARATOR .
|
||||
OC::$SERVERROOT . '/lib/private' . PATH_SEPARATOR .
|
||||
OC::$SERVERROOT . '/config' . PATH_SEPARATOR .
|
||||
OC::$THIRDPARTYROOT . '/3rdparty' . PATH_SEPARATOR .
|
||||
implode($paths, PATH_SEPARATOR) . PATH_SEPARATOR .
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
namespace OC\AppFramework\Utility;
|
||||
|
||||
// register 3rdparty autoloaders
|
||||
require_once __DIR__ . '/../../../3rdparty/Pimple/Pimple.php';
|
||||
require_once __DIR__ . '/../../../../3rdparty/Pimple/Pimple.php';
|
||||
|
||||
/**
|
||||
* Class SimpleContainer
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue