partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

commit 3e94b3474c95aa174e5910d8f277d9ae42938960
parent e36f073deb581c23a9699ccdabe9d4d86b8dab04
Author: Felicitus <felicitus@felicitus.org>
Date:   Mon, 18 Mar 2013 15:34:08 +0100

Fix the class loader. It is amazing that this worked more or less; basically, the class loader was told to look for "Symfony" classes inside of the Doctrine/ folder in PEAR, which obviously doesn't work.

Diffstat:
Msrc/backend/PartKeepr/PartKeepr.php | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/backend/PartKeepr/PartKeepr.php b/src/backend/PartKeepr/PartKeepr.php @@ -59,7 +59,7 @@ class PartKeepr { $classLoader = new ClassLoader('Doctrine\Common'); $classLoader->register(); - $classLoader = new ClassLoader('Symfony', 'Doctrine'); + $classLoader = new ClassLoader('Symfony'); $classLoader->register(); $classLoader = new ClassLoader("DoctrineExtensions\NestedSet", self::getRootDirectory() ."/3rdparty/doctrine2-nestedset/lib");