diff options
author | Bart Visscher <bartv@thisnet.nl> | 2012-10-27 11:32:16 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2012-10-27 11:32:16 +0200 |
commit | 43e8293d9ce92b42f2dd944847c7e4d8d1b17b9f (patch) | |
tree | f730f57f71b6c01a07510f37d4e08d9e980d3544 /lib | |
parent | a8d0f8482926e7780edc6ffa60f772da1f20e40a (diff) | |
download | nextcloud-server-43e8293d9ce92b42f2dd944847c7e4d8d1b17b9f.tar.gz nextcloud-server-43e8293d9ce92b42f2dd944847c7e4d8d1b17b9f.zip |
Change Symfony/Component/Routing from submodule to composer fetching
Diffstat (limited to 'lib')
-rw-r--r-- | lib/base.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/base.php b/lib/base.php index c8a54d1c659..c688d785339 100644 --- a/lib/base.php +++ b/lib/base.php @@ -97,8 +97,8 @@ class OC{ elseif(strpos($className, 'Sabre_')===0) { $path = str_replace('_', '/', $className) . '.php'; } - elseif(strpos($className, 'Symfony\\')===0) { - $path = str_replace('\\', '/', $className) . '.php'; + elseif(strpos($className, 'Symfony\\Component\\Routing\\')===0) { + $path = 'symfony/routing/'.str_replace('\\', '/', $className) . '.php'; } elseif(strpos($className, 'Test_')===0) { $path = 'tests/lib/'.strtolower(str_replace('_', '/', substr($className, 5)) . '.php'); |