partkeepr

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

commit 237412260c1fd14e291ae970ae0ec0f05a5ed629
parent 5a2724f6226f3abd9297e120825ef840a447e3e4
Author: felicitus <felicitus@felicitus.org>
Date:   Wed, 28 Dec 2011 13:36:48 +0100

Don't use the wrong Yaml check; doctrine's bundled yaml is enough

Diffstat:
Msrc/setup/tests/check-doctrine.php | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/setup/tests/check-doctrine.php b/src/setup/tests/check-doctrine.php @@ -59,8 +59,7 @@ if (\Doctrine\ORM\Version::compare("2.1.0") == 1) { * of footprints. */ -if (!$sfClassLoader->canLoadClass("Symfony\\Component\\Yaml\\Yaml") || - !$doctrineClassLoader->canLoadClass("Doctrine\\Symfony\\Component\\Yaml\\Yaml")) { +if (!$doctrineClassLoader->canLoadClass("Doctrine\\Symfony\\Component\\Yaml\\Yaml")) { $yamlErrorMessage = "The YAML component of symfony is not installed. This component is required; please install "; $yamlErrorMessage .= "it using:<br/><br/>";